about summary refs log tree commit diff
path: root/pkgs/development/web/nodejs
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2015-12-06 12:20:50 +0000
committerRok Garbas <rok@garbas.si>2015-12-06 21:57:09 +0100
commit59fc3cd8adb109e20e2b0266a303b46a5952ed21 (patch)
tree5cdf8d904aa5d4cd7a56c10ada7e229dfdbe9e3b /pkgs/development/web/nodejs
parent46c65335cacfdde28a0e30ec73063024e305d48f (diff)
downloadnixlib-59fc3cd8adb109e20e2b0266a303b46a5952ed21.tar
nixlib-59fc3cd8adb109e20e2b0266a303b46a5952ed21.tar.gz
nixlib-59fc3cd8adb109e20e2b0266a303b46a5952ed21.tar.bz2
nixlib-59fc3cd8adb109e20e2b0266a303b46a5952ed21.tar.lz
nixlib-59fc3cd8adb109e20e2b0266a303b46a5952ed21.tar.xz
nixlib-59fc3cd8adb109e20e2b0266a303b46a5952ed21.tar.zst
nixlib-59fc3cd8adb109e20e2b0266a303b46a5952ed21.zip
nodejs: remove unlinked v4_1_0
The stable branch is v4.x.x and is already taken care of my the default.nix
Diffstat (limited to 'pkgs/development/web/nodejs')
-rw-r--r--pkgs/development/web/nodejs/v4_1_0.nix53
1 files changed, 0 insertions, 53 deletions
diff --git a/pkgs/development/web/nodejs/v4_1_0.nix b/pkgs/development/web/nodejs/v4_1_0.nix
deleted file mode 100644
index de8fa5f6bd3e..000000000000
--- a/pkgs/development/web/nodejs/v4_1_0.nix
+++ /dev/null
@@ -1,53 +0,0 @@
-{ stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser
-, pkgconfig, runCommand, which, libtool
-}:
-
-let
-  version = "4.1.0";
-
-  deps = {
-    inherit openssl zlib libuv;
-
-    # 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;
-  });
-
-  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 = "025lqmhvl7xpx1ip97jwkz21a97sw9zb4zi3y7fgfag59vv0ac25";
-  };
-
-  configureFlags = map (name: "--shared-${name}") (builtins.attrNames deps) ++ [ "--without-dtrace" ];
-
-  dontDisableStatic = true;
-
-  prePatch = ''
-    patchShebangs .
-  '';
-
-  patches = stdenv.lib.optional stdenv.isDarwin ./no-xcode-4.1.0.patch;
-
-  buildInputs = [ python which ] ++ (builtins.attrValues deps)
-    ++ optional stdenv.isLinux utillinux
-    ++ optionals stdenv.isDarwin [ openssl libtool ];
-  setupHook = ./setup-hook.sh;
-
-  enableParallelBuilding = true;
-
-  passthru.interpreterName = "nodejs";
-
-  meta = {
-    description = "Event-driven I/O framework for the V8 JavaScript engine";
-    homepage = http://nodejs.org;
-    license = licenses.mit;
-    maintainers = [ maintainers.goibhniu maintainers.havvy ];
-    platforms = platforms.linux ++ platforms.darwin;
-  };
-}