c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
18 lines
475 B
Nix
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];
|
|
}
|