summary refs log blame commit diff
path: root/pkgs/applications/kde/yakuake.nix
blob: 6f9c8df30012658af53e619094c7b9cae1866ea7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                                                                               
                                                            






                                                                          
                                                  



















                                                                          
{
  mkDerivation, lib, kdoctools, extra-cmake-modules,
  karchive, kcrash, kdbusaddons, ki18n, kiconthemes, knewstuff, knotifications,
  knotifyconfig, konsole, kparts, kwindowsystem, qtx11extras
}:

mkDerivation {
  name = "yakuake";

  buildInputs = [
    karchive kcrash kdbusaddons ki18n kiconthemes knewstuff knotifications
    knotifyconfig kparts kwindowsystem qtx11extras
  ];

  propagatedBuildInputs = [
    karchive kcrash kdbusaddons ki18n kiconthemes knewstuff knotifications
    knotifyconfig kparts kwindowsystem
  ];

  propagatedUserEnvPkgs = [ konsole ];

  nativeBuildInputs = [
    extra-cmake-modules kdoctools
  ];

  meta = {
    homepage = https://yakuake.kde.org;
    description = "Quad-style terminal emulator for KDE";
    maintainers = with lib.maintainers; [ fridh ];
    license = lib.licenses.gpl2;
  };
}