nixpkgs/pkgs/applications/kde/yakuake.nix
Elias Probst a9a3018c1c
yakuake: add missing kwayland dependency
The optional dependeny kwayland was missing, CMake complained about it.
It might be helpful once a Wayland Plasma5 session becomes reality.
See also: https://github.com/NixOS/nixpkgs/pull/100057
2020-12-26 23:36:05 +01:00

33 lines
859 B
Nix

{
mkDerivation, lib, kdoctools, extra-cmake-modules,
karchive, kcrash, kdbusaddons, ki18n, kiconthemes, knewstuff, knotifications,
knotifyconfig, konsole, kparts, kwayland, kwindowsystem, qtx11extras
}:
mkDerivation {
name = "yakuake";
buildInputs = [
karchive kcrash kdbusaddons ki18n kiconthemes knewstuff knotifications
knotifyconfig kparts kwayland kwindowsystem qtx11extras
];
propagatedBuildInputs = [
karchive kcrash kdbusaddons ki18n kiconthemes knewstuff knotifications
knotifyconfig kparts kwindowsystem
];
propagatedUserEnvPkgs = [ konsole ];
nativeBuildInputs = [
extra-cmake-modules kdoctools
];
meta = {
homepage = "https://yakuake.kde.org";
description = "Quad-style terminal emulator for KDE";
maintainers = with lib.maintainers; [ fridh ];
license = lib.licenses.gpl2;
};
}