mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
f94f871b67
svn path=/nixpkgs/trunk/; revision=31650
34 lines
919 B
Nix
34 lines
919 B
Nix
{ stdenv, fetchurl, openssl, python, zlib, v8 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.6.6";
|
|
name = "nodejs-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
|
|
sha256 = "00i14bjhyadxrh0df1ig4ndv1c0b7prnnhyar5lxcgxnn4cabgks";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--openssl-includes=${openssl}/include"
|
|
"--openssl-libpath=${openssl}/lib"
|
|
"--shared-v8"
|
|
"--shared-v8-includes=${v8}/includes"
|
|
"--shared-v8-libpath=${v8}/lib"
|
|
];
|
|
|
|
patchPhase = ''
|
|
sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i tools/{*.py,waf-light,node-waf}
|
|
'';
|
|
|
|
buildInputs = [ python openssl v8 zlib];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Event-driven I/O framework for the V8 JavaScript engine";
|
|
homepage = http://nodejs.org;
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|