1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-13 16:15:30 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks/kconfig.nix
2017-02-27 11:49:46 -06:00

9 lines
239 B
Nix

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