about summary refs log tree commit diff
path: root/pkgs/development/interpreters/jruby
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2009-06-26 16:52:58 +0000
committerMarc Weber <marco-oweber@gmx.de>2009-06-26 16:52:58 +0000
commit3fa07803c62ce2b7dc984f10d0f7bd6e6b6b0948 (patch)
tree8f58b8faf95e409db76d9c1e2701455a97ec6826 /pkgs/development/interpreters/jruby
parentffb53a0e6f47b059cfc5e5b07a0ff5f165a36db6 (diff)
adding jruby-1.1.6 cause the one shipping with netbeans can't get uid.
svn path=/nixpkgs/trunk/; revision=16060
Diffstat (limited to 'pkgs/development/interpreters/jruby')
-rw-r--r--pkgs/development/interpreters/jruby/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/jruby/default.nix b/pkgs/development/interpreters/jruby/default.nix
new file mode 100644
index 0000000000000..3c0db6c6dcc49
--- /dev/null
+++ b/pkgs/development/interpreters/jruby/default.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
+  };
+}