2011-12-11 20:38:57 +01:00
|
|
|
{ stdenv, fetchurl, openssl, python, zlib }:
|
2011-05-06 00:38:04 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-12-11 20:38:57 +01:00
|
|
|
version = "0.6.5";
|
2011-05-06 00:38:04 +02:00
|
|
|
name = "nodejs-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2011-07-31 10:56:09 +02:00
|
|
|
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
|
2011-12-11 20:38:57 +01:00
|
|
|
sha256 = "72364d240fb61e678897c099df6f2913857c5931aa9b1f44e73e432d4629ca2f";
|
2011-05-06 00:38:04 +02:00
|
|
|
};
|
|
|
|
|
2011-12-11 20:38:57 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--openssl-includes=${openssl}/include"
|
|
|
|
"--openssl-libpath=${openssl}/lib"
|
|
|
|
];
|
|
|
|
|
2011-05-06 00:38:04 +02:00
|
|
|
patchPhase = ''
|
|
|
|
sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i tools/{*.py,waf-light,node-waf}
|
|
|
|
'';
|
|
|
|
|
2011-12-11 20:38:57 +01:00
|
|
|
buildInputs = [ python openssl zlib];
|
2011-05-06 00:38:04 +02:00
|
|
|
|
2011-07-31 10:49:03 +02:00
|
|
|
meta = with stdenv.lib; {
|
2011-05-06 00:38:04 +02:00
|
|
|
description = "Event-driven I/O framework for the V8 JavaScript engine";
|
|
|
|
homepage = http://nodejs.org;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|