mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
f306e67e15
It is analogous to 98d8e1a160
.
17 lines
431 B
Nix
17 lines
431 B
Nix
{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig
|
|
, kconfigwidgets, ki18n, kiconthemes, kservice, kwindowsystem
|
|
, sonnet
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "ktextwidgets";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kcompletion kconfig kconfigwidgets kiconthemes kservice
|
|
];
|
|
propagatedBuildInputs = [ ki18n kwindowsystem sonnet ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|