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