My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/interpreters/jruby/default.nix

18 lines
486 B

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
};
}