fetchgit: allow passing thru meta

This commit is contained in:
Sandro Jäckel 2022-04-18 03:06:02 +02:00
parent 04b5d464ba
commit 538a5a28b7
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -27,6 +27,7 @@ in
, # Impure env vars (https://nixos.org/nix/manual/#sec-advanced-attributes)
# needed for netrcPhase
netrcImpureEnvVars ? []
, meta ? {}
}:
/* NOTE:
@ -90,5 +91,5 @@ stdenvNoCC.mkDerivation {
"GIT_PROXY_COMMAND" "NIX_GIT_SSL_CAINFO" "SOCKS_SERVER"
];
inherit preferLocalBuild;
inherit preferLocalBuild meta;
}