summary refs log tree commit diff
path: root/pkgs/applications/kde/konsole.nix
blob: 15b6373bdb0233667bc64a53540fdaf10777dbe9 (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
{
  kdeApp, lib, kdeWrapper,
  extra-cmake-modules, kdoctools,
  kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kguiaddons,
  ki18n, kiconthemes, kinit, kdelibs4support, kio, knotifications,
  knotifyconfig, kparts, kpty, kservice, ktextwidgets, kwidgetsaddons,
  kwindowsystem, kxmlgui, qtscript
}:

let
  unwrapped =
    kdeApp {
      name = "konsole";
      meta = {
        license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
        maintainers = [ lib.maintainers.ttuegel ];
      };
      nativeBuildInputs = [ extra-cmake-modules kdoctools ];
      propagatedBuildInputs = [
        kdelibs4support ki18n kwindowsystem qtscript kbookmarks kcompletion
        kconfig kconfigwidgets kcoreaddons kguiaddons kiconthemes kinit kio
        knotifications knotifyconfig kparts kpty kservice ktextwidgets
        kwidgetsaddons kxmlgui
      ];
    };
in
kdeWrapper {
  inherit unwrapped;
  targets = [ "bin/konsole" ];
}