Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Revert "buildNodePackage: enable strictDeps"

This reverts commit e0705250d2b9b192aa0ee430d61e4039c91d1f55, which
broke patching `#!/usr/bin/env node` shebangs.

It also modified a generated file, which would get reverted the next
time node-env.nix is regenerated.

If we want to enable strictDeps for node packages we should update
node2nix instead.

+6 -7
+6 -7
pkgs/development/node-packages/node-env.nix
··· 540 540 in 541 541 stdenv.mkDerivation ( 542 542 { 543 - name = name + lib.optionalString (version != null) "-${version}"; 544 - strictDeps = true; 543 + name = "${name}${if version == null then "" else "-${version}"}"; 545 544 buildInputs = 546 - [ tarWrapper ] 545 + [ 546 + tarWrapper 547 + python 548 + nodejs 549 + ] 547 550 ++ lib.optional (stdenv.hostPlatform.isLinux) pkgs.util-linux 548 551 ++ lib.optional (stdenv.hostPlatform.isDarwin) libtool 549 552 ++ buildInputs; 550 - propagatedNativeBuildInputs = [ 551 - nodejs 552 - python 553 - ]; 554 553 555 554 inherit nodejs; 556 555