nixpkgs/pkgs/applications/graphics/batik/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
592 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl}:
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
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=";
};
meta = with lib; {
2018-08-22 21:40:22 +00:00
description = "Java based toolkit for handling SVG";
homepage = "https://xmlgraphics.apache.org/batik";
2018-08-22 21:40:22 +00:00
license = licenses.asl20;
platforms = platforms.unix;
sourceProvenance = with sourceTypes; [ binaryBytecode ];
};
installPhase = ''
mkdir $out
cp -r * $out/
'';
}