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

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