about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorCillian de Roiste <cillian.deroiste@gmail.com>2011-08-21 19:42:55 +0000
committerCillian de Roiste <cillian.deroiste@gmail.com>2011-08-21 19:42:55 +0000
commit2dd19f6d7246e05394139b6f729cd9db1f736a6c (patch)
tree8b4199d03605021a6523362c1f83693669e02b3e /pkgs
parent1317e5bdaa3dd7d997fda4552ae0f2d4a2c7f22f (diff)
downloadnixlib-2dd19f6d7246e05394139b6f729cd9db1f736a6c.tar
nixlib-2dd19f6d7246e05394139b6f729cd9db1f736a6c.tar.gz
nixlib-2dd19f6d7246e05394139b6f729cd9db1f736a6c.tar.bz2
nixlib-2dd19f6d7246e05394139b6f729cd9db1f736a6c.tar.lz
nixlib-2dd19f6d7246e05394139b6f729cd9db1f736a6c.tar.xz
nixlib-2dd19f6d7246e05394139b6f729cd9db1f736a6c.tar.zst
nixlib-2dd19f6d7246e05394139b6f729cd9db1f736a6c.zip
Updating node to version 0.5.4
svn path=/nixpkgs/trunk/; revision=28726
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/web/nodejs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/web/nodejs/default.nix b/pkgs/development/web/nodejs/default.nix
index f3e5e9aa6b46..909f0d39fbdb 100644
--- a/pkgs/development/web/nodejs/default.nix
+++ b/pkgs/development/web/nodejs/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, openssl, python }:
 
 stdenv.mkDerivation rec {
-  version = "0.5.2";
+  version = "0.5.4";
   name = "nodejs-${version}";
 
   src = fetchurl {
     url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
-    sha256 = "16z16gq5pibw5l830pv5dgx7v2gw6syrddphikcgia92pw4r33qr";
+    sha256 = "d32d3af4e3286b383640df857d76c2fcca1a2e2cb85abb484483a0a49d09ae71";
   };
 
   patchPhase = ''