mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
2258b21e4b
Build-tested on x86_64 Linux and on Darwin.
18 lines
334 B
Nix
18 lines
334 B
Nix
{stdenv, fetchurl, unzip}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "saxon-6.5.3";
|
|
builder = ./unzip-builder.sh;
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/saxon/saxon6_5_3.zip;
|
|
md5 = "7b8c7c187473c04d2abdb40d8ddab5c6";
|
|
};
|
|
|
|
inherit unzip;
|
|
buildInputs = [unzip];
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|