mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 18:03:59 +00:00
12 lines
200 B
Nix
12 lines
200 B
Nix
|
{ kdeFramework, lib
|
||
|
, extra-cmake-modules
|
||
|
}:
|
||
|
|
||
|
kdeFramework {
|
||
|
name = "kwidgetsaddons";
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
meta = {
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
}
|