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

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