Merge pull request #8 from jakeisnt/patch-1

Add name and description to shell : )
This commit is contained in:
Mitchell Hashimoto 2022-12-20 09:59:58 -07:00 committed by GitHub
commit dcc9e1dbb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,9 @@
{
let
name = "zig-overlay";
description = "An empty project that uses Zig.";
in
{
inherit name description;
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/release-22.05";
@ -34,6 +38,7 @@
pkgs = import nixpkgs {inherit overlays system;};
in rec {
devShells.default = pkgs.mkShell {
inherit name description;
nativeBuildInputs = with pkgs; [
zigpkgs.master
];