Skip to content

Commit

Permalink
nodejs: refactor generic build function
Browse files Browse the repository at this point in the history
This removes some duplicated and dead code across the different versions of
nodejs.
  • Loading branch information
lo1tuma authored and globin committed Nov 2, 2017
1 parent 9ac793f commit ccbcf15
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 106 deletions.
29 changes: 20 additions & 9 deletions pkgs/development/web/nodejs/nodejs.nix
@@ -1,16 +1,20 @@
{ stdenv, fetchurl, openssl, python2, zlib, libuv, v8, utillinux, http-parser
, pkgconfig, runCommand, which, libtool, fetchpatch
, callPackage
{ stdenv, fetchurl, openssl, python2, zlib, libuv, utillinux, http-parser
, pkgconfig, which
, darwin ? null
, enableNpm ? true
}:

with stdenv.lib;

{ enableNpm ? true, version, sha256, patches }:

let

inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices;



baseName = if enableNpm then "nodejs" else "nodejs-slim";

sharedLibDeps = { inherit openssl zlib libuv; } // (optionalAttrs (!stdenv.isDarwin) { inherit http-parser; });

sharedConfigureFlags = concatMap (name: [
Expand All @@ -25,12 +29,20 @@ let
extraConfigFlags = optionals (!enableNpm) [ "--without-npm" ];
in

rec {
stdenv.mkDerivation {
inherit version;

name = "${baseName}-${version}";

src = fetchurl {
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
inherit sha256;
};

buildInputs = optionals stdenv.isDarwin [ CoreServices ApplicationServices ]
++ [ python2 which zlib libuv openssl ]
++ optionals stdenv.isLinux [ utillinux http-parser ]
++ optionals stdenv.isDarwin [ pkgconfig libtool ];
++ optionals stdenv.isDarwin [ pkgconfig darwin.cctools ];

configureFlags = sharedConfigureFlags ++ [ "--without-dtrace" ] ++ extraConfigFlags;

Expand All @@ -40,10 +52,9 @@ in

passthru.interpreterName = "nodejs";


setupHook = ./setup-hook.sh;

patches = optionals stdenv.isDarwin [ ./no-xcode.patch ];
inherit patches;

preBuild = optionalString stdenv.isDarwin ''
sed -i -e "s|tr1/type_traits|type_traits|g" \
Expand All @@ -59,7 +70,7 @@ in
paxmark m $out/bin/node
PATH=$out/bin:$PATH patchShebangs $out
${optionalString enableNpm ''
${optionalString enableNpm ''
mkdir -p $out/share/bash-completion/completions/
$out/bin/npm completion > $out/share/bash-completion/completions/npm
''}
Expand Down
23 changes: 7 additions & 16 deletions pkgs/development/web/nodejs/v4.nix
@@ -1,20 +1,11 @@
{ stdenv, fetchurl, openssl, python2, zlib, libuv, v8, utillinux, http-parser
, pkgconfig, runCommand, which, libtool, fetchpatch
, callPackage
, darwin ? null
, enableNpm ? true
}@args:
{ stdenv, callPackage, lib, enableNpm ? true }:

let
nodejs = import ./nodejs.nix args;
baseName = if enableNpm then "nodejs" else "nodejs-slim";
buildNodejs = callPackage ./nodejs.nix {};
in
stdenv.mkDerivation (nodejs // rec {
buildNodejs {
inherit enableNpm;
version = "4.8.5";
name = "${baseName}-${version}";
src = fetchurl {
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
sha256 = "0lqdnnihmc2wpl1v1shj60i49wka2354b00a86k0xbjg5gyfx2m4";
};

})
sha256 = "0lqdnnihmc2wpl1v1shj60i49wka2354b00a86k0xbjg5gyfx2m4";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode.patch ];
}
22 changes: 7 additions & 15 deletions pkgs/development/web/nodejs/v6.nix
@@ -1,19 +1,11 @@
{ stdenv, fetchurl, openssl, python2, zlib, libuv, v8, utillinux, http-parser
, pkgconfig, runCommand, which, libtool, fetchpatch
, callPackage
, darwin ? null
, enableNpm ? true
}@args:
{ stdenv, callPackage, lib, enableNpm ? true }:

let
nodejs = import ./nodejs.nix args;
baseName = if enableNpm then "nodejs" else "nodejs-slim";
buildNodejs = callPackage ./nodejs.nix {};
in
stdenv.mkDerivation (nodejs // rec {
buildNodejs {
inherit enableNpm;
version = "6.11.5";
name = "${baseName}-${version}";
src = fetchurl {
url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
sha256 = "1bwakrvy0if5spbymwpb05qwrb47xwzlnc42rapgp6b744ay8v8w";
};
})
sha256 = "1bwakrvy0if5spbymwpb05qwrb47xwzlnc42rapgp6b744ay8v8w";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode.patch ];
}
24 changes: 7 additions & 17 deletions pkgs/development/web/nodejs/v8.nix
@@ -1,21 +1,11 @@
{ stdenv, fetchurl, openssl, python2, zlib, libuv, v8, utillinux, http-parser
, pkgconfig, runCommand, which, libtool, fetchpatch
, callPackage
, darwin ? null
, enableNpm ? true
}@args:
{ stdenv, callPackage, lib, enableNpm ? true }:

let
nodejs = import ./nodejs.nix args;
baseName = if enableNpm then "nodejs" else "nodejs-slim";
buildNodejs = callPackage ./nodejs.nix {};
in
stdenv.mkDerivation (nodejs // rec {
buildNodejs {
inherit enableNpm;
version = "8.9.0";
name = "${baseName}-${version}";
src = fetchurl {
url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
sha256 = "128ir6rkdz1xj55hbflw0sh7snrrvjwgvxmgnka7cyhjkvw5i0mf";
};

patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
})
sha256 = "128ir6rkdz1xj55hbflw0sh7snrrvjwgvxmgnka7cyhjkvw5i0mf";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
}
24 changes: 7 additions & 17 deletions pkgs/development/web/nodejs/v9.nix
@@ -1,21 +1,11 @@
{ stdenv, fetchurl, openssl, python2, zlib, libuv, v8, utillinux, http-parser
, pkgconfig, runCommand, which, libtool, fetchpatch
, callPackage
, darwin ? null
, enableNpm ? true
}@args:
{ stdenv, callPackage, lib, enableNpm ? true }:

let
nodejs = import ./nodejs.nix args;
baseName = if enableNpm then "nodejs" else "nodejs-slim";
buildNodejs = callPackage ./nodejs.nix {};
in
stdenv.mkDerivation (nodejs // rec {
buildNodejs {
inherit enableNpm;
version = "9.0.0";
name = "${baseName}-${version}";
src = fetchurl {
url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
sha256 = "19az7mxcb3d1aj0f7gvhriyyghn1rwn0425924pa84d6j1mbsljv";
};

patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
})
sha256 = "19az7mxcb3d1aj0f7gvhriyyghn1rwn0425924pa84d6j1mbsljv";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
}
40 changes: 8 additions & 32 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -3028,41 +3028,17 @@ with pkgs;

nodejs-slim = nodejs-slim-6_x;

nodejs-4_x = callPackage ../development/web/nodejs/v4.nix {
libtool = darwin.cctools;
};

nodejs-slim-4_x = callPackage ../development/web/nodejs/v4.nix {
libtool = darwin.cctools;
enableNpm = false;
};

nodejs-6_x = callPackage ../development/web/nodejs/v6.nix {
libtool = darwin.cctools;
};

nodejs-slim-6_x = callPackage ../development/web/nodejs/v6.nix {
libtool = darwin.cctools;
enableNpm = false;
};
nodejs-4_x = callPackage ../development/web/nodejs/v4.nix {};
nodejs-slim-4_x = callPackage ../development/web/nodejs/v4.nix { enableNpm = false; };

nodejs-8_x = callPackage ../development/web/nodejs/v8.nix {
libtool = darwin.cctools;
};

nodejs-slim-8_x = callPackage ../development/web/nodejs/v8.nix {
libtool = darwin.cctools;
enableNpm = false;
};
nodejs-6_x = callPackage ../development/web/nodejs/v6.nix {};
nodejs-slim-6_x = callPackage ../development/web/nodejs/v6.nix { enableNpm = false; };

nodejs-9_x = callPackage ../development/web/nodejs/v9.nix {
libtool = darwin.cctools;
};
nodejs-8_x = callPackage ../development/web/nodejs/v8.nix {};
nodejs-slim-8_x = callPackage ../development/web/nodejs/v8.nix { enableNpm = false; };

nodejs-slim-9_x = callPackage ../development/web/nodejs/v9.nix {
libtool = darwin.cctools;
enableNpm = false;
};
nodejs-9_x = callPackage ../development/web/nodejs/v9.nix {};
nodejs-slim-9_x = callPackage ../development/web/nodejs/v9.nix { enableNpm = false; };

nodePackages_6_x = callPackage ../development/node-packages/default-v6.nix {
nodejs = pkgs.nodejs-6_x;
Expand Down

0 comments on commit ccbcf15

Please sign in to comment.