Unverified Commit 5f6e36bb authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

Revert "buildNodePackage: enable strictDeps" (#409271)

parents 28bd5acb 0bc2923e
Loading
Loading
Loading
Loading
+6 −7
Original line number Diff line number Diff line
@@ -540,17 +540,16 @@ let
    in
    stdenv.mkDerivation (
      {
        name = name + lib.optionalString (version != null) "-${version}";
        strictDeps = true;
        name = "${name}${if version == null then "" else "-${version}"}";
        buildInputs =
          [ tarWrapper ]
          [
            tarWrapper
            python
            nodejs
          ]
          ++ lib.optional (stdenv.hostPlatform.isLinux) pkgs.util-linux
          ++ lib.optional (stdenv.hostPlatform.isDarwin) libtool
          ++ buildInputs;
        propagatedNativeBuildInputs = [
          nodejs
          python
        ];

        inherit nodejs;