about summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2015-04-07 10:38:47 -0500
committerJohn Wiegley <johnw@newartisans.com>2015-04-07 10:38:47 -0500
commite5775f533ac2246be5a13cd405d4353e5b23c217 (patch)
treedd4248fcea673cc71ddf6671030b9ed3ebbc2510 /pkgs/development/web
parent8f702347a261d253c798f2da6a516391d0375918 (diff)
parentd2358a6e538e52a34680ff4e67256d4ff2ead88c (diff)
downloadnixlib-e5775f533ac2246be5a13cd405d4353e5b23c217.tar
nixlib-e5775f533ac2246be5a13cd405d4353e5b23c217.tar.gz
nixlib-e5775f533ac2246be5a13cd405d4353e5b23c217.tar.bz2
nixlib-e5775f533ac2246be5a13cd405d4353e5b23c217.tar.lz
nixlib-e5775f533ac2246be5a13cd405d4353e5b23c217.tar.xz
nixlib-e5775f533ac2246be5a13cd405d4353e5b23c217.tar.zst
nixlib-e5775f533ac2246be5a13cd405d4353e5b23c217.zip
Merge pull request #7145 from flosse/old-stable-nodejs
nixpkgs: added old stable nodejs v0.10.38
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/nodejs/v0_10.nix64
1 files changed, 64 insertions, 0 deletions
diff --git a/pkgs/development/web/nodejs/v0_10.nix b/pkgs/development/web/nodejs/v0_10.nix
new file mode 100644
index 000000000000..df8321cfca82
--- /dev/null
+++ b/pkgs/development/web/nodejs/v0_10.nix
@@ -0,0 +1,64 @@
+{ stdenv, fetchurl, openssl, python, zlib, v8, utillinux, http-parser, c-ares
+, pkgconfig, runCommand, which
+}:
+
+let
+  dtrace = runCommand "dtrace-native" {} ''
+    mkdir -p $out/bin
+    ln -sv /usr/sbin/dtrace $out/bin
+  '';
+
+  version = "0.10.38";
+
+  # !!! Should we also do shared libuv?
+  deps = {
+    inherit openssl zlib;
+
+    # 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
+  } // (stdenv.lib.optionalAttrs (!stdenv.isDarwin) {
+    inherit http-parser;
+  })
+  // ({ cares = c-ares; });
+
+  sharedConfigureFlags = name: [
+    "--shared-${name}"
+    "--shared-${name}-includes=${builtins.getAttr name deps}/include"
+    "--shared-${name}-libpath=${builtins.getAttr name deps}/lib"
+  ];
+
+  inherit (stdenv.lib) concatMap optional optionals maintainers licenses platforms;
+in stdenv.mkDerivation {
+  name = "nodejs-${version}";
+
+  src = fetchurl {
+    url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
+    sha256 = "12xpa9jzry5g0j41908498qqs8v0q6miqkv6mggyzas8bvnshgai";
+  };
+
+  configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps);
+
+  prePatch = ''
+    sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i configure
+  '';
+
+  patches = if stdenv.isDarwin then [ ./no-xcode.patch ] else null;
+
+  postPatch = if stdenv.isDarwin then ''
+    (cd tools/gyp; patch -Np1 -i ${../../python-modules/gyp/no-darwin-cflags.patch})
+  '' else null;
+
+  buildInputs = [ python which ]
+    ++ (optional stdenv.isLinux utillinux)
+    ++ optionals stdenv.isDarwin [ pkgconfig openssl dtrace ];
+  setupHook = ./setup-hook.sh;
+
+  meta = {
+    description = "Event-driven I/O framework for the V8 JavaScript engine";
+    homepage = http://nodejs.org;
+    license = licenses.mit;
+    maintainers = [ maintainers.goibhniu maintainers.shlevy ];
+    platforms = platforms.linux ++ platforms.darwin;
+  };
+}