forked from mirrors/nixpkgs
Add io.js
This commit is contained in:
parent
1aed33f68b
commit
c56256709b
31
pkgs/development/web/iojs/default.nix
Normal file
31
pkgs/development/web/iojs/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ stdenv, fetchurl, python, utillinux, nightly ? false }:
|
||||
|
||||
let
|
||||
version = if nightly then "1.1.1-nightly201502072c3121c606" else "1.1.0";
|
||||
inherit (stdenv.lib) optional maintainers licenses platforms;
|
||||
in stdenv.mkDerivation {
|
||||
name = "iojs-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = if nightly
|
||||
then "https://iojs.org/download/nightly/v${version}/iojs-v${version}.tar.gz"
|
||||
else "https://iojs.org/dist/v${version}/iojs-v${version}.tar.gz";
|
||||
sha256 = if nightly
|
||||
then "1jjh5f8kpcgdjjib9q1f2hqvrs6p4m4fyfbfy6dsdbzl2hglajvw"
|
||||
else "0yvz3rw7d73snc1g447l4amqbbyydbyzr9ynykmyld7l3gdsif7h";
|
||||
};
|
||||
|
||||
prePatch = ''
|
||||
sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i configure
|
||||
'';
|
||||
|
||||
buildInputs = [ python ] ++ (optional stdenv.isLinux utillinux);
|
||||
setupHook = ../nodejs/setup-hook.sh;
|
||||
|
||||
meta = {
|
||||
description = "A friendly fork of Node.js with an open governance model";
|
||||
homepage = https://iojs.org/;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -38,7 +38,7 @@ let
|
|||
|
||||
sources = runCommand "node-sources" {} ''
|
||||
tar --no-same-owner --no-same-permissions -xf ${nodejs.src}
|
||||
mv *node* $out
|
||||
mv $(find . -type d -mindepth 1 -maxdepth 1) $out
|
||||
'';
|
||||
|
||||
# Convert deps to attribute set
|
||||
|
|
|
@ -1729,6 +1729,13 @@ let
|
|||
callPackage ./node-packages.nix { self = nodePackages; }
|
||||
);
|
||||
|
||||
iojs = callPackage ../development/web/iojs { };
|
||||
iojs-nightly = callPackage ../development/web/iojs { nightly = true; };
|
||||
|
||||
iojsPackages = recurseIntoAttrs (
|
||||
callPackage ./node-packages.nix { self = iojsPackages; nodejs = iojs; }
|
||||
);
|
||||
|
||||
ldapvi = callPackage ../tools/misc/ldapvi { };
|
||||
|
||||
ldns = callPackage ../development/libraries/ldns { };
|
||||
|
|
Loading…
Reference in a new issue