forked from mirrors/nixpkgs
31 lines
813 B
Nix
31 lines
813 B
Nix
{ lib, stdenv, fetchurl, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jython";
|
|
|
|
version = "2.7.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://search.maven.org/remotecontent?filepath=org/python/jython-standalone/${version}/jython-standalone-${version}.jar";
|
|
sha256 = "sha256-2n89gpsUi8+oawWdyWTjqFVv7bAhCWyNsH4wxm+qubQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
dontUnpack = true;
|
|
|
|
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 = "https://jython.org/";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
|
license = lib.licenses.psfl;
|
|
platforms = jre.meta.platforms;
|
|
};
|
|
}
|