1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00
nixpkgs/pkgs/development/libraries/libxslt/default.nix

41 lines
978 B
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, libxml2, findXMLCatalogs }:
stdenv.mkDerivation rec {
2016-09-28 14:40:37 +01:00
name = "libxslt-1.1.29";
2012-09-28 22:19:48 +01:00
src = fetchurl {
url = "http://xmlsoft.org/sources/${name}.tar.gz";
2016-09-28 14:40:37 +01:00
sha256 = "1klh81xbm9ppzgqk339097i39b7fnpmlj8lzn8bpczl3aww6x5xm";
};
2012-09-28 22:19:48 +01:00
patches = stdenv.lib.optional stdenv.isSunOS ./patch-ah.patch;
outputs = [ "bin" "dev" "out" "doc" ];
2015-07-26 23:25:53 +01:00
2012-09-28 22:19:48 +01:00
buildInputs = [ libxml2 ];
propagatedBuildInputs = [ findXMLCatalogs ];
configureFlags = [
"--without-python"
"--without-crypto"
"--without-debug"
"--without-mem-debug"
"--without-debugger"
];
postFixup = ''
moveToOutput bin/xslt-config "$dev"
moveToOutput lib/xsltConf.sh "$dev"
moveToOutput share/man/man1 "$bin"
'';
meta = with stdenv.lib; {
homepage = http://xmlsoft.org/XSLT/;
description = "A C library and tools to do XSL transformations";
license = "bsd";
platforms = platforms.unix;
maintainers = [ maintainers.eelco ];
};
}