mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
* NodeJS updated to 0.6.7.
svn path=/nixpkgs/trunk/; revision=31593
This commit is contained in:
parent
5bcd4dd4dd
commit
fd6238d2c8
1 changed files with 3 additions and 3 deletions
|
@ -1,12 +1,12 @@
|
|||
{ stdenv, fetchurl, openssl, python, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.6.5";
|
||||
version = "0.6.7";
|
||||
name = "nodejs-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
|
||||
sha256 = "72364d240fb61e678897c099df6f2913857c5931aa9b1f44e73e432d4629ca2f";
|
||||
sha256 = "0m3d4j0gjidckj2dgb7pll47j94c6p0xhlbsbcpjsd93jx28fhxk";
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
|||
sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i tools/{*.py,waf-light,node-waf}
|
||||
'';
|
||||
|
||||
buildInputs = [ python openssl zlib];
|
||||
buildInputs = [ python openssl zlib ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Event-driven I/O framework for the V8 JavaScript engine";
|
||||
|
|
Loading…
Reference in a new issue