7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
91 lines
2.1 KiB
Nix
91 lines
2.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, autoreconfHook
|
|
, libxml2
|
|
, findXMLCatalogs
|
|
, gettext
|
|
, python
|
|
, ncurses
|
|
, libxcrypt
|
|
, libgcrypt
|
|
, cryptoSupport ? false
|
|
, pythonSupport ? libxml2.pythonSupport
|
|
, gnome
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libxslt";
|
|
version = "1.1.42";
|
|
|
|
outputs = [ "bin" "dev" "out" "doc" "devdoc" ] ++ lib.optional pythonSupport "py";
|
|
outputMan = "bin";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/libxslt/${lib.versions.majorMinor finalAttrs.version}/libxslt-${finalAttrs.version}.tar.xz";
|
|
hash = "sha256-hcpiysDUH8d9P2Az2p32/XPSDqL8GLCjYJ/7QRDhuus=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
autoreconfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
libxml2.dev libxcrypt
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
gettext
|
|
] ++ lib.optionals pythonSupport [
|
|
libxml2.py
|
|
python
|
|
ncurses
|
|
] ++ lib.optionals cryptoSupport [
|
|
libgcrypt
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
findXMLCatalogs
|
|
];
|
|
|
|
configureFlags = [
|
|
"--without-debug"
|
|
"--without-mem-debug"
|
|
"--without-debugger"
|
|
(lib.withFeature pythonSupport "python")
|
|
(lib.optionalString pythonSupport "PYTHON=${python.pythonOnBuildForHost.interpreter}")
|
|
] ++ lib.optionals (!cryptoSupport) [
|
|
"--without-crypto"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postFixup = ''
|
|
moveToOutput bin/xslt-config "$dev"
|
|
moveToOutput lib/xsltConf.sh "$dev"
|
|
'' + lib.optionalString pythonSupport ''
|
|
mkdir -p $py/nix-support
|
|
echo ${libxml2.py} >> $py/nix-support/propagated-build-inputs
|
|
moveToOutput ${python.sitePackages} "$py"
|
|
'';
|
|
|
|
passthru = {
|
|
inherit pythonSupport;
|
|
|
|
updateScript = gnome.updateScript {
|
|
packageName = "libxslt";
|
|
versionPolicy = "none";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.gnome.org/GNOME/libxslt";
|
|
description = "C library and tools to do XSL transformations";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
broken = pythonSupport && !libxml2.pythonSupport; # see #73102 for why this is not an assert
|
|
};
|
|
})
|