40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ fetchurl, stdenv, ant, jre, makeWrapper, libXxf86vm, which }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "processing-${version}";
|
|
version = "2.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/processing/processing/archive/processing-0227-${version}.tar.gz";
|
|
sha256 = "1r8q5y0h4gpqap5jwkspc0li6566hzx5chr7hwrdn8mxlzsm50xk";
|
|
};
|
|
|
|
# Stop it trying to download its own version of java
|
|
patches = [ ./use-nixpkgs-jre.patch ];
|
|
|
|
buildInputs = [ ant jre makeWrapper libXxf86vm which ];
|
|
|
|
buildPhase = "cd build && ant build";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/${name}
|
|
mkdir -p $out/bin
|
|
cp -r linux/work/* $out/${name}/
|
|
makeWrapper $out/${name}/processing $out/bin/processing \
|
|
--prefix PATH : "${jre}/bin:${which}/bin" \
|
|
--prefix LD_LIBRARY_PATH : ${libXxf86vm}/lib
|
|
makeWrapper $out/${name}/processing-java $out/bin/processing-java \
|
|
--prefix PATH : "${jre}/bin:${which}/bin" \
|
|
--prefix LD_LIBRARY_PATH : ${libXxf86vm}/lib
|
|
ln -s ${jre} $out/${name}/java
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A language and IDE for electronic arts";
|
|
homepage = http://processing.org;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|