3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/graphics/batik/default.nix

24 lines
534 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
2020-11-14 20:35:40 +00:00
stdenv.mkDerivation rec {
pname = "batik";
version = "1.13";
src = fetchurl {
2020-11-14 20:35:40 +00:00
url = "mirror://apache/xmlgraphics/batik/binaries/batik-bin-${version}.tar.gz";
sha256 = "16sq90nbs6psgm3xz30sbs6r5dnpd3qzsvr1xvnp4yipwjcmhmkw";
};
2018-08-22 22:40:22 +01:00
meta = with stdenv.lib; {
description = "Java based toolkit for handling SVG";
homepage = "https://xmlgraphics.apache.org/batik";
2018-08-22 22:40:22 +01:00
license = licenses.asl20;
platforms = platforms.unix;
};
installPhase = ''
mkdir $out
cp -r * $out/
'';
}