python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / kde / yakuake.nix
blob7c98275b9173f489a43b053c1d0b0593c62a41b6
2   mkDerivation, lib, kdoctools, extra-cmake-modules,
3   karchive, kcrash, kdbusaddons, ki18n, kiconthemes, knewstuff, knotifications,
4   knotifyconfig, konsole, kparts, kwayland, kwindowsystem, qtx11extras
5 }:
7 mkDerivation {
8   pname = "yakuake";
10   buildInputs = [
11     karchive kcrash kdbusaddons ki18n kiconthemes knewstuff knotifications
12     knotifyconfig kparts kwayland kwindowsystem qtx11extras
13   ];
15   propagatedBuildInputs = [
16     karchive kcrash kdbusaddons ki18n kiconthemes knewstuff knotifications
17     knotifyconfig kparts kwindowsystem
18   ];
20   propagatedUserEnvPkgs = [ konsole ];
22   nativeBuildInputs = [
23     extra-cmake-modules kdoctools
24   ];
26   outputs = [ "out" "dev" ];
28   meta = {
29     homepage = "https://yakuake.kde.org";
30     description = "Quad-style terminal emulator for KDE";
31     maintainers = with lib.maintainers; [ fridh ];
32     license = lib.licenses.gpl2;
33   };