forked from mirrors/nixpkgs
buildRustPackage: allow passthru overrides
Don't ignore the passthru that could be passed to the derivation
This commit is contained in:
parent
74a2d53e0d
commit
daf53c9a10
|
@ -80,5 +80,5 @@ in stdenv.mkDerivation (args // {
|
|||
runHook postInstall
|
||||
'';
|
||||
|
||||
passthru = { inherit cargoDeps; };
|
||||
passthru = { inherit cargoDeps; } // (args.passthru or {});
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue