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

mkDerivation {
  name = "kconfig";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qttools ];
  propagatedBuildInputs = [ qtbase ];
}