Merge pull request #132 from zuqq/fix-nix-develop

Call `templates/app/shell.nix` without `buildGoApplication`
This commit is contained in:
Jörg Thalheim 2023-11-14 08:41:53 +01:00 committed by GitHub
commit b7d333c7b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@
inherit (gomod2nix.legacyPackages.${system}) buildGoApplication;
};
devShells.default = callPackage ./shell.nix {
inherit (gomod2nix.legacyPackages.${system}) buildGoApplication mkGoEnv gomod2nix;
inherit (gomod2nix.legacyPackages.${system}) mkGoEnv gomod2nix;
};
})
);