summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kconfig.nix
blob: 981256e75bf6cedbe939d657da926f4bdd56778a (plain) (blame)
1
2
3
4
5
6
7
8
{ kdeFramework, lib, extra-cmake-modules, qtbase, qttools }:

kdeFramework {
  name = "kconfig";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules qttools ];
  buildInputs = [ qtbase ];
}