mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:26:02 +00:00
b790a31204
In particular, this moves share/kf5 to the "out" output. This prevents kdelibs4support from pulling kdoctools.dev into its closure (via share/kf5/kdoctools/customization/dtd/kdex.dtd, which references ${kdoctools}/share/kf5). This reduces the closure size of kdelibs4support by 156 MiB.
26 lines
730 B
Nix
26 lines
730 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, docbook_xml_dtd_45, docbook5_xsl,
|
|
karchive, ki18n, qtbase,
|
|
perl, perlPackages
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kdoctools";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedNativeBuildInputs = [ perl perlPackages.URI ];
|
|
buildInputs = [ karchive ki18n ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
outputs = [ "out" "dev" ];
|
|
patches = [ ./kdoctools-no-find-docbook-xml.patch ];
|
|
cmakeFlags = [
|
|
"-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook"
|
|
"-DDocBookXSL_DIR=${docbook5_xsl}/xml/xsl/docbook"
|
|
];
|
|
postFixup = ''
|
|
moveToOutput "share/doc" "$dev"
|
|
moveToOutput "share/man" "$dev"
|
|
'';
|
|
}
|