bundlerEnv: Fix passthru not being passed-through

E.g. `pkgs.bundlerEnv { passthru = { ... }; ... }` previously would not
result in the `passthru` attrs not being concatenated onto the returned
derivation. Now it will be.
This commit is contained in:
Andrew Marshall
2024-06-03 23:41:29 -04:00
parent 518daacfe2
commit f299debaac
@@ -23,6 +23,7 @@
, nativeBuildInputs ? []
, buildInputs ? []
, extraConfigPaths ? []
, passthru ? {}
, ...
}@args:
@@ -182,7 +183,7 @@ let
exit 1
'';
};
});
} // passthru);
};
basicEnv =