summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-05-24 02:58:00 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-05-24 02:58:00 -0400
commit205fc55ea29a843f28b8fc1932cf1b88fce6bc1d (patch)
tree60356fe690d2af5f1d761f5464bee5485db2a9d7 /pkgs/development/web
parent46eeef1898ffbf57330ec31b96a6c2d89f8fcb36 (diff)
parent33b8830a85242ad09898a0c90a6f0494c34132ca (diff)
downloadnixlib-205fc55ea29a843f28b8fc1932cf1b88fce6bc1d.tar
nixlib-205fc55ea29a843f28b8fc1932cf1b88fce6bc1d.tar.gz
nixlib-205fc55ea29a843f28b8fc1932cf1b88fce6bc1d.tar.bz2
nixlib-205fc55ea29a843f28b8fc1932cf1b88fce6bc1d.tar.lz
nixlib-205fc55ea29a843f28b8fc1932cf1b88fce6bc1d.tar.xz
nixlib-205fc55ea29a843f28b8fc1932cf1b88fce6bc1d.tar.zst
nixlib-205fc55ea29a843f28b8fc1932cf1b88fce6bc1d.zip
Merge remote-tracking branch 'upstream/staging' into compiler-rt
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/nodejs/v10.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/development/web/nodejs/v10.nix b/pkgs/development/web/nodejs/v10.nix
new file mode 100644
index 000000000000..9f5f18809897
--- /dev/null
+++ b/pkgs/development/web/nodejs/v10.nix
@@ -0,0 +1,11 @@
+{ stdenv, callPackage, lib, openssl, enableNpm ? true }:
+
+let
+  buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
+in
+  buildNodejs {
+    inherit enableNpm;
+    version = "10.0.0";
+    sha256 = "0l5bx2j4f2ij19kx14my7g7k37j3fn9qpjvbisjvhpbm42810fg2";
+    patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ./no-xcodebuild.patch ];
+  }