mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
20 lines
616 B
Nix
20 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.7.0";
|
|
sha256 = "1r9vvnczjczqs29ja8gmbqgsfgkg0dph4qkaxb3yh7mb98r2ic6f";
|
|
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
|
|
'';
|
|
})
|