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

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