From db1533e57804423eb99529530e99be1c3c69f16b Mon Sep 17 00:00:00 2001 From: Mark Sisson <5761292+marksisson@users.noreply.github.com> Date: Wed, 5 Jun 2024 18:56:10 -0500 Subject: [PATCH] feat(builder): allow additional attributes in mkGoEnv derivation Extended the mkGoEnv derivation to accept additional attributes by introducing a variadic argument. This change provides the intended behavior of the mkGoEnv derivation, which is to allow the user to pass additional attributes to the mkDerivation. --- builder/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/builder/default.nix b/builder/default.nix index d500555..e101432 100644 --- a/builder/default.nix +++ b/builder/default.nix @@ -163,6 +163,7 @@ let { pwd , toolsGo ? pwd + "/tools.go" , modules ? pwd + "/gomod2nix.toml" + , ... }@attrs: let goMod = parseGoMod (readFile "${toString pwd}/go.mod");