nixpkgs/pkgs/applications/kde/yakuake.nix

33 lines
860 B
Nix
Raw Normal View History

2019-08-16 08:31:50 +00:00
{
mkDerivation, lib, kdoctools, extra-cmake-modules,
karchive, kcrash, kdbusaddons, ki18n, kiconthemes, knewstuff, knotifications,
knotifyconfig, konsole, kparts, kwayland, kwindowsystem, qtx11extras
2019-08-16 08:31:50 +00:00
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "yakuake";
2019-08-16 08:31:50 +00:00
buildInputs = [
karchive kcrash kdbusaddons ki18n kiconthemes knewstuff knotifications
knotifyconfig kparts kwayland kwindowsystem qtx11extras
2019-08-16 08:31:50 +00:00
];
propagatedBuildInputs = [
karchive kcrash kdbusaddons ki18n kiconthemes knewstuff knotifications
knotifyconfig kparts kwindowsystem
];
propagatedUserEnvPkgs = [ konsole ];
nativeBuildInputs = [
extra-cmake-modules kdoctools
];
meta = {
homepage = "https://yakuake.kde.org";
2019-08-16 08:31:50 +00:00
description = "Quad-style terminal emulator for KDE";
maintainers = with lib.maintainers; [ fridh ];
license = lib.licenses.gpl2;
};
}