2012-09-28 22:19:48 +01:00
|
|
|
{ stdenv, fetchurl, libxml2 }:
|
2006-10-12 16:43:01 +01:00
|
|
|
|
2013-03-25 12:16:28 +00:00
|
|
|
stdenv.mkDerivation (rec {
|
2012-09-28 22:19:48 +01:00
|
|
|
name = "libxslt-1.1.27";
|
|
|
|
|
2006-10-12 16:43:01 +01:00
|
|
|
src = fetchurl {
|
2009-10-30 12:42:48 +00:00
|
|
|
url = "ftp://xmlsoft.org/libxml2/${name}.tar.gz";
|
2012-09-28 22:19:48 +01:00
|
|
|
sha256 = "09ky3vhlaahvsb0q9gp6h3as53pfj70gincirachjqzj46jdka5n";
|
2006-10-12 16:43:01 +01:00
|
|
|
};
|
2012-09-28 22:19:48 +01:00
|
|
|
|
2013-03-25 12:02:03 +00:00
|
|
|
buildInputs = [ libxml2 ];
|
2012-09-28 22:19:48 +01:00
|
|
|
|
2009-02-03 16:14:23 +00:00
|
|
|
postInstall = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/nix-support
|
2009-02-03 16:14:23 +00: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 12:42:48 +00:00
|
|
|
license = "bsd";
|
2013-11-05 09:46:59 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2012-09-29 19:40:56 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2009-02-03 16:14:23 +00:00
|
|
|
};
|
2013-03-25 12:16:28 +00:00
|
|
|
} // (if !stdenv.isFreeBSD then {} else {
|
|
|
|
buildInputs = [];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-libxml-prefix=${libxml2}"
|
|
|
|
"--without-python"
|
|
|
|
"--without-crypto"
|
|
|
|
"--without-debug"
|
|
|
|
"--without-mem-debug"
|
|
|
|
"--without-debugger"
|
|
|
|
];
|
|
|
|
}))
|