summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.19/kconfigwidgets/default.nix
blob: 3b3bd27cce085d862253f10e65799e1f4d8ec703 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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 = ''
    moveToOutput "bin/preparetips5" "$dev"
    wrapQtProgram "$dev/bin/preparetips5"
  '';
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}