summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/default.nix
blob: 0e14d06edd3671ccb253f0c77f0ee418124bbe25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ kdeFramework, lib, extra-cmake-modules, kauth, kcodecs, kconfig
, kdoctools, kguiaddons, ki18n, kwidgetsaddons, makeQtWrapper
}:

kdeFramework {
  name = "kconfigwidgets";
  nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
  buildInputs = [ kguiaddons ];
  propagatedBuildInputs = [ kauth kconfig kcodecs ki18n kwidgetsaddons ];
  patches = [ ./0001-qdiriterator-follow-symlinks.patch ];
  postInstall = ''
    wrapQtProgram "$out/bin/preparetips5"
  '';
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}