2014-11-25 16:52:43 +00:00
|
|
|
{ stdenv, fetchurl, libxml2, findXMLCatalogs }:
|
2006-10-12 16:43:01 +01:00
|
|
|
|
2009-10-30 12:42:48 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-02-27 17:15:57 +00:00
|
|
|
name = "libxslt-1.1.28";
|
2012-09-28 22:19:48 +01:00
|
|
|
|
2006-10-12 16:43:01 +01:00
|
|
|
src = fetchurl {
|
2015-04-04 15:07:31 +01:00
|
|
|
url = "http://xmlsoft.org/sources/${name}.tar.gz";
|
2013-12-23 18:42:19 +00:00
|
|
|
sha256 = "13029baw9kkyjgr7q3jccw2mz38amq7mmpr5p3bh775qawd1bisz";
|
2006-10-12 16:43:01 +01:00
|
|
|
};
|
2012-09-28 22:19:48 +01:00
|
|
|
|
|
|
|
buildInputs = [ libxml2 ];
|
|
|
|
|
2014-11-25 16:52:43 +00:00
|
|
|
propagatedBuildInputs = [ findXMLCatalogs ];
|
|
|
|
|
2013-02-27 17:15:57 +00:00
|
|
|
patches = stdenv.lib.optionals stdenv.isSunOS [ ./patch-ah.patch ];
|
|
|
|
|
2013-03-25 12:43:45 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-libxml-prefix=${libxml2}"
|
|
|
|
"--without-python"
|
|
|
|
"--without-crypto"
|
|
|
|
"--without-debug"
|
|
|
|
"--without-mem-debug"
|
|
|
|
"--without-debugger"
|
|
|
|
];
|
|
|
|
|
2009-02-03 16:14:23 +00:00
|
|
|
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
|
|
|
};
|
2006-10-12 16:43:01 +01:00
|
|
|
}
|