454707da23
svn path=/nixpkgs/trunk/; revision=3660
14 lines
281 B
Nix
14 lines
281 B
Nix
{stdenv, fetchurl, unzip}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "saxon-6.5.3";
|
|
builder = ./unzip-builder.sh;
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/saxon6_5_3.zip;
|
|
md5 = "7b8c7c187473c04d2abdb40d8ddab5c6";
|
|
};
|
|
|
|
inherit unzip;
|
|
buildInputs = [unzip];
|
|
}
|