2012-09-28 23:19:48 +02:00
|
|
|
{ stdenv, fetchurl, libxml2 }:
|
2006-10-12 17:43:01 +02:00
|
|
|
|
2009-10-30 13:42:48 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-02-27 18:15:57 +01:00
|
|
|
name = "libxslt-1.1.28";
|
2012-09-28 23:19:48 +02:00
|
|
|
|
2006-10-12 17:43:01 +02:00
|
|
|
src = fetchurl {
|
2009-10-30 13:42:48 +01:00
|
|
|
url = "ftp://xmlsoft.org/libxml2/${name}.tar.gz";
|
2013-12-23 19:42:19 +01:00
|
|
|
sha256 = "13029baw9kkyjgr7q3jccw2mz38amq7mmpr5p3bh775qawd1bisz";
|
2006-10-12 17:43:01 +02:00
|
|
|
};
|
2012-09-28 23:19:48 +02:00
|
|
|
|
|
|
|
buildInputs = [ libxml2 ];
|
|
|
|
|
2013-02-27 18:15:57 +01:00
|
|
|
patches = stdenv.lib.optionals stdenv.isSunOS [ ./patch-ah.patch ];
|
|
|
|
|
2013-03-25 13:43:45 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-libxml-prefix=${libxml2}"
|
|
|
|
"--without-python"
|
|
|
|
"--without-crypto"
|
|
|
|
"--without-debug"
|
|
|
|
"--without-mem-debug"
|
|
|
|
"--without-debugger"
|
|
|
|
];
|
|
|
|
|
2009-02-03 17:14:23 +01:00
|
|
|
postInstall = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/nix-support
|
2009-02-03 17:14:23 +01:00
|
|
|
ln -s ${libxml2}/nix-support/setup-hook $out/nix-support/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://xmlsoft.org/XSLT/;
|
|
|
|
description = "A C library and tools to do XSL transformations";
|
2009-10-30 13:42:48 +01:00
|
|
|
license = "bsd";
|
2013-11-05 10:46:59 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2012-09-29 20:40:56 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2009-02-03 17:14:23 +01:00
|
|
|
};
|
2006-10-12 17:43:01 +02:00
|
|
|
}
|