summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/jruby/default.nix
blob: 3c0db6c6dcc49b9346ce6dce887c394287a411ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
  };
}