Commit daf53c9a authored by zimbatm's avatar zimbatm
Browse files

buildRustPackage: allow passthru overrides

Don't ignore the passthru that could be passed to the derivation
parent 74a2d53e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -80,5 +80,5 @@ in stdenv.mkDerivation (args // {
    runHook postInstall
  '';

  passthru = { inherit cargoDeps; };
  passthru = { inherit cargoDeps; } // (args.passthru or {});
})