2006-10-12 17:43:01 +02:00
|
|
|
{stdenv, fetchurl, libxml2}:
|
|
|
|
|
|
|
|
assert libxml2 != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-06-12 11:49:40 +02:00
|
|
|
name = "libxslt-1.1.24";
|
2006-10-12 17:43:01 +02:00
|
|
|
src = fetchurl {
|
2008-06-12 11:49:40 +02:00
|
|
|
url = ftp://xmlsoft.org/libxml2/libxslt-1.1.24.tar.gz;
|
2008-10-05 10:47:34 +02:00
|
|
|
sha256 = "c0c10944841e9a79f29d409c6f8da0d1b1af0403eb3819c82c788dfa6a180b3e";
|
2006-10-12 17:43:01 +02:00
|
|
|
};
|
|
|
|
buildInputs = [libxml2];
|
2007-10-18 23:08:47 +02:00
|
|
|
postInstall = "ensureDir $out/nix-support; ln -s ${libxml2}/nix-support/setup-hook $out/nix-support/";
|
2006-10-12 17:43:01 +02:00
|
|
|
}
|