mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
5772ac5a75
In the past I was very active with Python packaging. For several years now I was hardly around as maintainer, so it does not make sense I am listed as a maintainer for these makes. Looking back, I should have removed myself as maintainer already much longer ago. Anyway, better late than never. It's been a fun ride, and I do intend to occasionally contribute to Nixpkgs, but not in the same way it once was.
35 lines
868 B
Nix
35 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;
|
|
};
|
|
}
|