mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
12 lines
278 B
Nix
12 lines
278 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
kcoreaddons, kdbusaddons, ki18n, knotifications, kpty, qtbase,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kwrited";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ kcoreaddons kdbusaddons ki18n knotifications kpty qtbase ];
|
|
}
|