summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-15.12/konsole.nix
blob: 4b4cba2a37795076cff219f5d88d65f977218705 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{ kdeApp
, lib
, extra-cmake-modules
, kdoctools
, makeQtWrapper
, qtscript
, kbookmarks
, kcompletion
, kconfig
, kconfigwidgets
, kcoreaddons
, kguiaddons
, ki18n
, kiconthemes
, kinit
, kdelibs4support
, kio
, knotifications
, knotifyconfig
, kparts
, kpty
, kservice
, ktextwidgets
, kwidgetsaddons
, kwindowsystem
, kxmlgui
}:

kdeApp {
  name = "konsole";
  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
    makeQtWrapper
  ];
  buildInputs = [
    qtscript
    kbookmarks
    kcompletion
    kconfig
    kconfigwidgets
    kcoreaddons
    kguiaddons
    kiconthemes
    kinit
    kio
    knotifications
    knotifyconfig
    kparts
    kpty
    kservice
    ktextwidgets
    kwidgetsaddons
    kxmlgui
  ];
  propagatedBuildInputs = [
    kdelibs4support
    ki18n
    kwindowsystem
  ];
  postInstall = ''
    wrapQtProgram "$out/bin/konsole"
  '';
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
}