366da7c17c
This installs the kio "man:" protocol handler, which fixes the UNIX manual section in the KDE Help Center. Note that kde currently parses "/etc/man.conf" manually, if `$MANPATH` is not set, to build its man page index. (if https://bugs.kde.org/show_bug.cgi?id=404022 is addressed, the "/etc/man.conf" symlink should not be necessary anymore)
23 lines
859 B
Nix
23 lines
859 B
Nix
{
|
|
mkDerivation, lib, extra-cmake-modules, kdoctools, shared-mime-info,
|
|
exiv2, kactivities, karchive, kbookmarks, kconfig, kconfigwidgets,
|
|
kcoreaddons, kdbusaddons, kguiaddons, kdnssd, kiconthemes, ki18n, kio, khtml,
|
|
kdelibs4support, kpty, libmtp, libssh, openexr, ilmbase, openslp, phonon,
|
|
qtsvg, samba, solid, gperf
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kio-extras";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools shared-mime-info ];
|
|
buildInputs = [
|
|
exiv2 kactivities karchive kbookmarks kconfig kconfigwidgets kcoreaddons
|
|
kdbusaddons kguiaddons kdnssd kiconthemes ki18n kio khtml kdelibs4support
|
|
kpty libmtp libssh openexr openslp phonon qtsvg samba solid gperf
|
|
];
|
|
CXXFLAGS = [ "-I${ilmbase.dev}/include/OpenEXR" ];
|
|
}
|