2021-01-11 07:54:33 +00:00
|
|
|
{lib, stdenv, fetchurl}:
|
2005-09-07 14:57:30 +00:00
|
|
|
|
2020-11-14 20:35:40 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "batik";
|
2022-10-28 05:11:25 +00:00
|
|
|
version = "1.16";
|
2020-11-14 20:35:40 +00:00
|
|
|
|
2005-09-07 14:57:30 +00:00
|
|
|
src = fetchurl {
|
2020-11-14 20:35:40 +00:00
|
|
|
url = "mirror://apache/xmlgraphics/batik/binaries/batik-bin-${version}.tar.gz";
|
2022-10-28 05:11:25 +00:00
|
|
|
sha256 = "sha256-Y4bJ6X46sKx1+fmNkOS2RU7gn7n0fKDnkOYMq0S8fYM=";
|
2005-09-07 14:57:30 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-08-22 21:40:22 +00:00
|
|
|
description = "Java based toolkit for handling SVG";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://xmlgraphics.apache.org/batik";
|
2018-08-22 21:40:22 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
2022-09-24 11:58:44 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
2016-08-02 16:06:29 +00:00
|
|
|
};
|
2020-11-24 17:50:08 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir $out
|
|
|
|
cp -r * $out/
|
|
|
|
'';
|
2005-09-07 14:57:30 +00:00
|
|
|
}
|