Merge pull request #161 from marksisson/patches/fix-mkgoenv-to-allow-passing-more-attributes

fix(builder): allow additional attributes in mkGoEnv derivation
This commit is contained in:
Marcus Ramberg 2024-09-28 01:04:23 +02:00 committed by GitHub
commit ba932692e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -163,6 +163,7 @@ let
{ pwd
, toolsGo ? pwd + "/tools.go"
, modules ? pwd + "/gomod2nix.toml"
, ...
}@attrs:
let
goMod = parseGoMod (readFile "${toString pwd}/go.mod");