about summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorStanislav Asunkin <1353637+stasjok@users.noreply.github.com>2023-07-15 10:29:55 +0300
committerStanislav Asunkin <1353637+stasjok@users.noreply.github.com>2023-07-15 10:29:55 +0300
commit38ca04ed64bbd732c951f5926288a9ad80f941f0 (patch)
treec13f24667aeafd77c18bbde6a3ad2c069dc88fc7 /pkgs/build-support
parent23fae57632e8eba6689fada2216eb922cf4b6b00 (diff)
buildNpmPackage: remove redundant passthru.npmDeps
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/node/build-npm-package/default.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkgs/build-support/node/build-npm-package/default.nix b/pkgs/build-support/node/build-npm-package/default.nix
index 357a0bd073228..0a988cbbaf3f2 100644
--- a/pkgs/build-support/node/build-npm-package/default.nix
+++ b/pkgs/build-support/node/build-npm-package/default.nix
@@ -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; };
 })