summary refs log tree commit diff
path: root/pkgs/applications/kde/kio-extras.nix
diff options
context:
space:
mode:
authortimor <timor.dd@googlemail.com>2019-02-06 17:30:09 +0100
committertimor <timor.dd@googlemail.com>2019-02-06 17:39:28 +0100
commit366da7c17c57db00710b632892ff1a1f61ae2c02 (patch)
treec29fd74d9139321035eb1527535112f312e26d4d /pkgs/applications/kde/kio-extras.nix
parent8317d16d5555123d7957bdc5934f1420b494916e (diff)
downloadnixpkgs-366da7c17c57db00710b632892ff1a1f61ae2c02.tar
nixpkgs-366da7c17c57db00710b632892ff1a1f61ae2c02.tar.gz
nixpkgs-366da7c17c57db00710b632892ff1a1f61ae2c02.tar.bz2
nixpkgs-366da7c17c57db00710b632892ff1a1f61ae2c02.tar.lz
nixpkgs-366da7c17c57db00710b632892ff1a1f61ae2c02.tar.xz
nixpkgs-366da7c17c57db00710b632892ff1a1f61ae2c02.tar.zst
nixpkgs-366da7c17c57db00710b632892ff1a1f61ae2c02.zip
kio-extras: enable man protocol
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)
Diffstat (limited to 'pkgs/applications/kde/kio-extras.nix')
-rw-r--r--pkgs/applications/kde/kio-extras.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/kde/kio-extras.nix b/pkgs/applications/kde/kio-extras.nix
index 13585848317..dd717c9462d 100644
--- a/pkgs/applications/kde/kio-extras.nix
+++ b/pkgs/applications/kde/kio-extras.nix
@@ -3,7 +3,7 @@
   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
+  qtsvg, samba, solid, gperf
 }:
 
 mkDerivation {
@@ -16,7 +16,7 @@ mkDerivation {
   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
+    kpty libmtp libssh openexr openslp phonon qtsvg samba solid gperf
   ];
   CXXFLAGS = [ "-I${ilmbase.dev}/include/OpenEXR" ];
 }