7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
26 lines
419 B
Nix
26 lines
419 B
Nix
{
|
|
mkKdeDerivation,
|
|
docbook_xml_dtd_45,
|
|
docbook-xsl-nons,
|
|
perl,
|
|
perlPackages,
|
|
libxml2,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kdoctools";
|
|
|
|
# Perl could be used both at build time and at runtime.
|
|
extraNativeBuildInputs = [
|
|
perl
|
|
perlPackages.URI
|
|
libxml2
|
|
];
|
|
extraBuildInputs = [
|
|
docbook_xml_dtd_45
|
|
docbook-xsl-nons
|
|
];
|
|
extraPropagatedBuildInputs = [
|
|
perl
|
|
perlPackages.URI
|
|
];
|
|
}
|