Merge pull request #243604 from stasjok/remove-redundant-passthru

buildNpmPackage: remove redundant passthru.npmDeps
This commit is contained in:
Lily Foster
2023-07-16 19:23:39 -04:00
committed by GitHub
@@ -57,7 +57,5 @@ stdenv.mkDerivation (args // {
# Stripping takes way too long with the amount of files required by a typical Node.js project.
dontStrip = args.dontStrip or true;
passthru = { inherit npmDeps; } // (args.passthru or { });
meta = (args.meta or { }) // { platforms = args.meta.platforms or nodejs.meta.platforms; };
})