about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorIvan Trubach <mr.trubach@icloud.com>2023-06-17 08:34:23 +0300
committerIvan Trubach <mr.trubach@icloud.com>2023-08-28 12:16:30 +0300
commitdeb5cc6dc8a300ef9d64252445329f288869440e (patch)
tree2c7776dcb55b0f388138f8648ff3e40f4a14fa29 /pkgs/development
parentb0312f6dafdd4dd357d93ec07b3e34698dde956d (diff)
nodejs: do not pass --without-snapshot
Building --without-snapshot is no longer possible since v14. See
https://github.com/nodejs/node/commit/0822bfaa9f52aea289abd0e15a90b0df2e12f7e1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/web/nodejs/nodejs.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkgs/development/web/nodejs/nodejs.nix b/pkgs/development/web/nodejs/nodejs.nix
index bd90641c16f27..e9872948e47ce 100644
--- a/pkgs/development/web/nodejs/nodejs.nix
+++ b/pkgs/development/web/nodejs/nodejs.nix
@@ -70,7 +70,6 @@ let
     ] ++ (lib.optionals isCross [
       "--cross-compiling"
       "--without-intl"
-      "--without-snapshot"
       "--dest-cpu=${let platform = stdenv.hostPlatform; in
                     if      platform.isAarch32 then "arm"
                     else if platform.isAarch64 then "arm64"