depot/third_party/nixpkgs/pkgs/kde/frameworks/kdoctools/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

18 lines
475 B
Nix

{
mkKdeDerivation,
docbook_xml_dtd_45,
docbook-xsl-nons,
perl,
perlPackages,
}:
mkKdeDerivation {
pname = "kdoctools";
# lots of self-references, the output is pretty small (~5MB), not worth trying to untangle
outputs = ["out"];
# Perl could be used both at build time and at runtime.
extraNativeBuildInputs = [perl perlPackages.URI];
extraBuildInputs = [docbook_xml_dtd_45 docbook-xsl-nons];
extraPropagatedBuildInputs = [perl perlPackages.URI];
}