about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/yakuake.nix
blob: 7c98275b9173f489a43b053c1d0b0593c62a41b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  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";
    maintainers = with lib.maintainers; [ fridh ];
    license = lib.licenses.gpl2;
  };
}