summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics/batik/default.nix
blob: d776d433b37db9abf7b8ce70d50d5fab13a9f8d9 (plain)
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://tarballs.nixos.org/batik-1.6.zip;
    md5 = "edff288fc64f968ff96ca49763d50f3c";
  };

  buildInputs = [unzip];
}