mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Adding node.js, a javascript web development platform
svn path=/nixpkgs/trunk/; revision=27168
This commit is contained in:
parent
c5f0b7415f
commit
28096838d0
2 changed files with 27 additions and 0 deletions
25
pkgs/development/web/nodejs/default.nix
Normal file
25
pkgs/development/web/nodejs/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchurl, openssl, python }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.4.7";
|
||||
name = "nodejs-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://nodejs.org/dist/node-v${version}.tar.gz";
|
||||
sha256 = "1vixb54an9zp2zvc0z8pn6r6bv823wwy9m06xr4zzss9apw5yh2w";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i tools/{*.py,waf-light,node-waf}
|
||||
'';
|
||||
|
||||
buildInputs = [ python openssl ];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -862,6 +862,8 @@ let
|
|||
|
||||
most = callPackage ../tools/misc/most { };
|
||||
|
||||
nodejs = callPackage ../development/web/nodejs {};
|
||||
|
||||
lftp = callPackage ../tools/networking/lftp { };
|
||||
|
||||
libtorrent = callPackage ../tools/networking/p2p/libtorrent { };
|
||||
|
|
Loading…
Reference in a new issue