about summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorMathijs Kwik <mathijs@bluescreen303.nl>2014-04-22 23:15:44 +0200
committerMathijs Kwik <mathijs@bluescreen303.nl>2014-04-24 08:05:44 +0200
commit925c75c68d72a51c858e59351e7b2b59affe9e5e (patch)
treef0f9fd50d75d15eaac7bcae9af3e92baa47975e5 /pkgs/development/web
parent7eabca34095236160148cfefc5997d97c0185e1e (diff)
node.js - use bundled v8 :14.04-bugfix:
node needs v8 3.14, which is no longer maintained.
They bundle an in-tree version which does receive backports.
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/nodejs/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/web/nodejs/default.nix b/pkgs/development/web/nodejs/default.nix
index 626cf6a55c43b..9cbd7c46b52ee 100644
--- a/pkgs/development/web/nodejs/default.nix
+++ b/pkgs/development/web/nodejs/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, openssl, python, zlib, v8_3_14, utillinux, http-parser, c-ares, pkgconfig, runCommand }:
+{ stdenv, fetchurl, openssl, python, zlib, v8, utillinux, http-parser, c-ares, pkgconfig, runCommand }:
 
 let
   dtrace = runCommand "dtrace-native" {} ''
@@ -10,9 +10,12 @@ let
 
   # !!! Should we also do shared libuv?
   deps = {
-    v8 = v8_3_14;
     inherit openssl zlib http-parser;
     cares = c-ares;
+
+    # disabled system v8 because v8 3.14 no longer receives security fixes
+    # we fall back to nodejs' internal v8 copy which receives backports for now
+    # inherit v8
   };
 
   sharedConfigureFlags = name: [