nixpkgs/pkgs/development/libraries/java/saxon/default.nix

14 lines
298 B
Nix
Raw Normal View History

{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "saxon-6.5.3";
builder = ./unzip-builder.sh;
src = fetchurl {
url = http://belnet.dl.sourceforge.net/sourceforge/saxon/saxon6_5_3.zip;
md5 = "7b8c7c187473c04d2abdb40d8ddab5c6";
};
inherit unzip;
buildInputs = [unzip];
}