about summary refs log tree commit diff
path: root/pkgs/applications/graphics/batik/default.nix
blob: 8d422b6f880c304a2c65260f1e15188d56e3fe50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, unzip}:

stdenv.mkDerivation {
  name = "batik-1.6";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://apache.cs.uu.nl/dist/xml/batik/batik-1.6.zip;
    md5 = "edff288fc64f968ff96ca49763d50f3c";
  };

  buildInputs = [unzip];
}