70 lines
983 B
Nix
70 lines
983 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;
|
|
};
|
|
}
|