mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
10 lines
187 B
Nix
10 lines
187 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kconfig";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
}
|