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

kdeFramework {
  name = "kconfig";
  nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
  postInstall = ''
    wrapQtProgram "$out/bin/kreadconfig5"
    wrapQtProgram "$out/bin/kwriteconfig5"
  '';
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}