nixpkgs/pkgs/applications/kde/yakuake.nix

33 lines
865 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,
2019-11-19 13:34:26 +00:00
knotifyconfig, konsole, kparts, kwindowsystem, qtx11extras, kglobalaccel
2019-08-16 08:31:50 +00:00
}:
mkDerivation {
name = "yakuake";
buildInputs = [
karchive kcrash kdbusaddons ki18n kiconthemes knewstuff knotifications
2019-11-19 13:34:26 +00:00
knotifyconfig kparts kwindowsystem qtx11extras kglobalaccel
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;
description = "Quad-style terminal emulator for KDE";
maintainers = with lib.maintainers; [ fridh ];
license = lib.licenses.gpl2;
};
}