2005-09-07 07:57:30 -07:00
|
|
|
{stdenv, fetchurl, unzip}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "batik-1.6";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2013-06-25 05:05:48 -07:00
|
|
|
url = http://tarballs.nixos.org/batik-1.6.zip;
|
2016-09-10 10:46:06 -07:00
|
|
|
sha256 = "0cf15dspmzcnfda8w5lbsdx28m4v2rpq1dv5zx0r0n99ihqd1sh6";
|
2005-09-07 07:57:30 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [unzip];
|
2016-08-02 09:06:29 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
2005-09-07 07:57:30 -07:00
|
|
|
}
|