adding jruby-1.1.6 cause the one shipping with netbeans can't get uid.

svn path=/nixpkgs/trunk/; revision=16060
wip/yesman
Marc Weber 15 years ago
parent ffb53a0e6f
commit 3fa07803c6
  1. 18
      pkgs/development/interpreters/jruby/default.nix
  2. 4
      pkgs/top-level/all-packages.nix

@ -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;
};
jruby116 = import ../development/interpreters/jruby {
inherit fetchurl stdenv;
};
guileLib = import ../development/guile-modules/guile-lib {
inherit fetchurl stdenv guile texinfo;
};

Loading…
Cancel
Save