summary refs log tree commit diff
path: root/pkgs/development/libraries/java/saxon/default.nix
blob: cab9fafdf8dd370b9cd7ab1e86cb13a372760983 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{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];
}