summary refs log tree commit diff
path: root/pkgs/applications/kde/kate.nix
blob: 03cc0e1fe33b41d5aa3af88ca54510c9c36d10e1 (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
{
  kdeApp, lib, kdeWrapper,
  ecm, kdoctools,
  kactivities, kconfig, kcrash, kdbusaddons, kguiaddons, kiconthemes, ki18n,
  kinit, kio, kitemmodels, kjobwidgets, knewstuff, knotifications, konsole,
  kparts, ktexteditor, kwindowsystem, kwallet, kxmlgui, libgit2,
  plasma-framework, qtscript, threadweaver
}:

let
  unwrapped =
    kdeApp {
      name = "kate";
      meta = {
        license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ];
        maintainers = [ lib.maintainers.ttuegel ];
      };
      nativeBuildInputs = [ ecm kdoctools ];
      propagatedBuildInputs = [
        kactivities ki18n kio ktexteditor kwindowsystem plasma-framework
        qtscript kconfig kcrash kguiaddons kiconthemes kinit kjobwidgets kparts
        kxmlgui kdbusaddons kwallet kitemmodels knotifications threadweaver
        knewstuff libgit2
      ];
    };
in
kdeWrapper
{
  inherit unwrapped;
  targets = [ "bin/kate" "bin/kwrite" ];
  paths = [ konsole.unwrapped ];
}