Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
34 lines
868 B
Nix
34 lines
868 B
Nix
{
|
|
mkDerivation, lib, kdoctools, extra-cmake-modules,
|
|
karchive, kcrash, kdbusaddons, ki18n, kiconthemes, knewstuff, knotifications,
|
|
knotifyconfig, konsole, kparts, kwayland, kwindowsystem, qtx11extras
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "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
|
|
];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
meta = {
|
|
homepage = "https://yakuake.kde.org";
|
|
description = "Quad-style terminal emulator for KDE";
|
|
mainProgram = "yakuake";
|
|
license = lib.licenses.gpl2;
|
|
};
|
|
}
|