3
0
Fork 0
forked from mirrors/nixpkgs

Updating node to 0.5.2

svn path=/nixpkgs/trunk/; revision=28014
This commit is contained in:
Cillian de Roiste 2011-07-31 08:49:03 +00:00
parent 10f65d1148
commit 0942a5b164

View file

@ -1,12 +1,12 @@
{ stdenv, fetchurl, openssl, python }:
stdenv.mkDerivation rec {
version = "0.4.7";
version = "0.5.2";
name = "nodejs-${version}";
src = fetchurl {
url = "http://nodejs.org/dist/node-v${version}.tar.gz";
sha256 = "1vixb54an9zp2zvc0z8pn6r6bv823wwy9m06xr4zzss9apw5yh2w";
sha256 = "16z16gq5pibw5l830pv5dgx7v2gw6syrddphikcgia92pw4r33qr";
};
patchPhase = ''
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
buildInputs = [ python openssl ];
meta = with stdenv.lib; {
meta = with stdenv.lib; {
description = "Event-driven I/O framework for the V8 JavaScript engine";
homepage = http://nodejs.org;
license = licenses.mit;