adding jruby-1.1.6 cause the one shipping with netbeans can't get uid.
svn path=/nixpkgs/trunk/; revision=16060
This commit is contained in:
parent
ffb53a0e6f
commit
3fa07803c6
18
pkgs/development/interpreters/jruby/default.nix
Normal file
18
pkgs/development/interpreters/jruby/default.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
args: with args;
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "jruby-1.1.6";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://dist.codehaus.org/jruby/1.1.6RC1/jruby-bin-1.1.6RC1.tar.gz;
|
||||||
|
sha256 = "1q3cjshxk484i8gqxm682bxcrps7205nl9vlim4s6z827bjlmc4a";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [];
|
||||||
|
installPhase = '' ensureDir $out; cp -r * $out '';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "ruby interpreter written in Java";
|
||||||
|
homepage = http://jruby.codehaus.org/;
|
||||||
|
license = "CPL-1.0 GPL-2 LGPL-2.1"; # one of those
|
||||||
|
};
|
||||||
|
}
|
@ -2370,6 +2370,10 @@ let
|
|||||||
inherit fetchurl stdenv unzip;
|
inherit fetchurl stdenv unzip;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
jruby116 = import ../development/interpreters/jruby {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
guileLib = import ../development/guile-modules/guile-lib {
|
guileLib = import ../development/guile-modules/guile-lib {
|
||||||
inherit fetchurl stdenv guile texinfo;
|
inherit fetchurl stdenv guile texinfo;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user