mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
23 lines
284 B
Nix
23 lines
284 B
Nix
|
{ mkDerivation
|
||
|
, extra-cmake-modules
|
||
|
, kcoreaddons
|
||
|
, ki18n
|
||
|
, kpty
|
||
|
, knotifications
|
||
|
, kdbusaddons
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
name = "kwrited";
|
||
|
nativeBuildInputs = [
|
||
|
extra-cmake-modules
|
||
|
];
|
||
|
buildInputs = [
|
||
|
kcoreaddons
|
||
|
ki18n
|
||
|
kpty
|
||
|
knotifications
|
||
|
kdbusaddons
|
||
|
];
|
||
|
}
|