11 lines
284 B
Nix
11 lines
284 B
Nix
|
{ plasmaPackage, extra-cmake-modules, kcoreaddons, ki18n, kpty
|
||
|
, knotifications, kdbusaddons
|
||
|
}:
|
||
|
|
||
|
plasmaPackage {
|
||
|
name = "kwrited";
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
buildInputs = [ kcoreaddons kpty knotifications kdbusaddons ];
|
||
|
propagatedBuildInputs = [ ki18n ];
|
||
|
}
|