1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/desktops/plasma-5/kwrited.nix
2023-04-10 17:52:43 +02:00

16 lines
273 B
Nix

{ mkDerivation
, extra-cmake-modules
, kcoreaddons
, kdbusaddons
, ki18n
, knotifications
, kpty
, qtbase
}:
mkDerivation {
pname = "kwrited";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kcoreaddons kdbusaddons ki18n knotifications kpty qtbase ];
}