Add jython

This commit is contained in:
Dario Bertini 2015-04-24 10:44:33 +01:00
parent ed892e222b
commit 7c5dbbe23a
No known key found for this signature in database
GPG Key ID: B002EFE5F9B7F7F4
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv, fetchurl, makeWrapper, jre }:
stdenv.mkDerivation rec {
name = "jython-${version}";
version = "2.7-rc3";
src = fetchurl {
url = "http://search.maven.org/remotecontent?filepath=org/python/jython-standalone/${version}/jython-standalone-${version}.jar";
sha256 = "89fcaf53f1bda6124f836065c1e318e2e853d5a9a1fbf0e96a387c6d38828c78";
};
buildInputs = [ makeWrapper ];
unpackPhase = ":";
installPhase = ''
mkdir -pv $out/bin
cp $src $out/jython.jar
makeWrapper ${jre}/bin/java $out/bin/jython --add-flags "-jar $out/jython.jar"
'';
meta = {
description = "Python interpreter written in Java";
homepage = http://jython.org/;
license = stdenv.lib.licenses.psfl;
platforms = jre.meta.platforms;
};
}

View File

@ -4793,6 +4793,8 @@ let
jdtsdk = callPackage ../development/eclipse/jdt-sdk { };
jruby165 = callPackage ../development/interpreters/jruby { };
jython = callPackage ../development/interpreters/jython {};
guileCairo = callPackage ../development/guile-modules/guile-cairo { };