19 lines
616 B
Nix
19 lines
616 B
Nix
{ stdenv, fetchurl, openssl, python, zlib, libuv, v8, utillinux, http-parser
|
|
, pkgconfig, runCommand, which, libtool
|
|
, callPackage
|
|
, darwin ? null
|
|
}@args:
|
|
|
|
let
|
|
inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices;
|
|
|
|
in import ./nodejs.nix (args // rec {
|
|
version = "6.4.0";
|
|
sha256 = "1b3xpp38fd2y8zdkpvkyyvsddh5y4vly81hxkf9hi6wap0nqidj9";
|
|
extraBuildInputs = stdenv.lib.optionals stdenv.isDarwin
|
|
[ CoreServices ApplicationServices ];
|
|
preBuild = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
sed -i -e "s|tr1/type_traits|type_traits|g" \
|
|
-e "s|std::tr1|std|" src/util.h
|
|
'';
|
|
})
|