summary refs log blame commit diff
path: root/pkgs/applications/graphics/batik/default.nix
blob: fbe67d1600dca1e510a83537680a12bcb721d2eb (plain) (tree)
1
2
3
4
5
6
7





                          
                                                  




                                             
{stdenv, fetchurl, unzip}:

stdenv.mkDerivation {
  name = "batik-1.6";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nixos.org/tarballs/batik-1.6.zip;
    md5 = "edff288fc64f968ff96ca49763d50f3c";
  };

  buildInputs = [unzip];
}