nixpkgs/pkgs/development/interpreters/jython/default.nix

30 lines
747 B
Nix
Raw Normal View History

2015-04-24 10:44:33 +01:00
{ stdenv, fetchurl, makeWrapper, jre }:
stdenv.mkDerivation rec {
pname = "jython";
2015-04-24 10:44:33 +01:00
2020-02-23 16:28:13 +00:00
version = "2.7.2b3";
2015-04-24 10:44:33 +01:00
src = fetchurl {
url = "http://search.maven.org/remotecontent?filepath=org/python/jython-standalone/${version}/jython-standalone-${version}.jar";
2020-02-23 16:28:13 +00:00
sha256 = "142285hd9mx0nx5zw0jvkpqkb4kbhgyyy52p5bj061ya8bg5jizy";
2015-04-24 10:44:33 +01:00
};
buildInputs = [ makeWrapper ];
2019-06-19 16:45:34 +01:00
dontUnpack = true;
2015-04-24 10:44:33 +01:00
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";
2020-02-23 16:28:13 +00:00
homepage = "https://jython.org/";
2015-04-24 10:44:33 +01:00
license = stdenv.lib.licenses.psfl;
platforms = jre.meta.platforms;
};
}