buildNpmPackage: remove redundant passthru.npmDeps

This commit is contained in:
Stanislav Asunkin
2023-07-15 10:29:55 +03:00
parent 23fae57632
commit 38ca04ed64
@@ -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; };
})