mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 16:15:30 +00:00
9 lines
239 B
Nix
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 ];
|
|
}
|