Merge pull request #9 from mitchellh/revert-8-patch-1

Revert "Add name and description to shell : )"
This commit is contained in:
Mitchell Hashimoto 2022-12-24 16:36:10 -08:00 committed by GitHub
commit 6a3a2958a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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