From 23c5e85dad6bd8ef4f3fa00d676e7d057bf7f4f7 Mon Sep 17 00:00:00 2001 From: zuqq Date: Sat, 23 Sep 2023 22:13:09 +0100 Subject: [PATCH] Call `templates/app/shell.nix` without `buildGoApplication` --- templates/app/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/app/flake.nix b/templates/app/flake.nix index b26947b..1d8de62 100644 --- a/templates/app/flake.nix +++ b/templates/app/flake.nix @@ -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; }; }) );