2010-07-28 13:55:54 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2009-06-26 18:52:58 +02:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = '' ensureDir $out; cp -r * $out '';
|
|
|
|
|
|
|
|
meta = {
|
2010-07-28 13:55:54 +02:00
|
|
|
description = "Ruby interpreter written in Java";
|
|
|
|
homepage = http://jruby.codehaus.org/;
|
|
|
|
license = "CPL-1.0 GPL-2 LGPL-2.1"; # one of those
|
2009-06-26 18:52:58 +02:00
|
|
|
};
|
|
|
|
}
|