nixpkgs/pkgs/development/libraries/libxslt/default.nix

75 lines
2.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, libxml2, findXMLCatalogs, python2
2017-02-11 06:51:13 +00:00
, buildPlatform, hostPlatform
, cryptoSupport ? false
2017-02-11 06:51:13 +00:00
, pythonSupport ? buildPlatform == hostPlatform
}:
assert pythonSupport -> python2 != null;
assert pythonSupport -> libxml2.pythonSupport;
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "libxslt";
version = "1.1.29";
name = pname + "-" + version;
2012-09-28 21:19:48 +00:00
src = fetchurl {
url = "http://xmlsoft.org/sources/${name}.tar.gz";
2016-09-28 13:40:37 +00:00
sha256 = "1klh81xbm9ppzgqk339097i39b7fnpmlj8lzn8bpczl3aww6x5xm";
};
2012-09-28 21:19:48 +00:00
2017-08-16 13:10:09 +00:00
patches = [
(fetchpatch {
name = "CVE-2017-5029";
url = "https://git.gnome.org/browse/libxslt/"
+ "patch/?id=08ab2774b870de1c7b5a48693df75e8154addae5";
sha256 = "10azfmyffjf9d7b5js4ipxw9f20qi0kw3zq34bpqmbcpq3l338ky";
})
] ++ stdenv.lib.optional stdenv.isSunOS ./patch-ah.patch;
2017-05-23 13:36:02 +00:00
# fixes: can't build x86_64-unknown-cygwin shared library unless -no-undefined is specified
postPatch = optionalString hostPlatform.isCygwin ''
substituteInPlace tests/plugins/Makefile.in \
--replace 'la_LDFLAGS =' 'la_LDFLAGS = $(WIN32_EXTRA_LDFLAGS)'
'';
outputs = [ "bin" "dev" "out" "man" "doc" ] ++ stdenv.lib.optional pythonSupport "py";
2015-07-26 22:25:53 +00:00
buildInputs = [ libxml2.dev ] ++ stdenv.lib.optionals pythonSupport [ libxml2.py python2 ];
2012-09-28 21:19:48 +00:00
propagatedBuildInputs = [ findXMLCatalogs ];
# TODO move cryptoSupport as last flag, when upgrading libxslt
configureFlags = []
++ optional (buildPlatform != hostPlatform) "--with-libxml-prefix=${libxml2.dev}"
++ optional (!cryptoSupport) "--without-crypto"
++ [
"--without-debug"
"--without-mem-debug"
"--without-debugger"
] ++ optional pythonSupport "--with-python=${python2}";
postFixup = ''
moveToOutput bin/xslt-config "$dev"
moveToOutput lib/xsltConf.sh "$dev"
moveToOutput share/man/man1 "$bin"
'' + optionalString pythonSupport ''
mkdir -p $py/nix-support
echo ${libxml2.py} >> $py/nix-support/propagated-build-inputs
moveToOutput lib/python2.7 "$py"
'';
passthru = {
inherit pythonSupport;
};
meta = with stdenv.lib; {
homepage = http://xmlsoft.org/XSLT/;
description = "A C library and tools to do XSL transformations";
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.eelco ];
};
}