mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +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
|
|
];
|
|
}
|