about summary refs log tree commit diff
path: root/pkgs/applications/kde/okteta.nix
blob: 6683b9876fcbe6c2682ce270ded79db9faf1e8d7 (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
{
  kdeApp, lib, kdeWrapper,
  ecm, kdoctools,
  kconfig, kinit,
  kcmutils, kconfigwidgets, knewstuff, kparts, qca-qt5
}:

let
  unwrapped =
    kdeApp {
      name = "okteta";
      meta = {
        license = with lib.licenses; [ gpl2 ];
        maintainers = with lib.maintainers; [ peterhoeg ];
      };
      nativeBuildInputs = [ ecm kdoctools ];
      propagatedBuildInputs = [
        kconfig kinit
        kcmutils kconfigwidgets knewstuff kparts qca-qt5
      ];
    };

in kdeWrapper {
  inherit unwrapped;
  targets = [ "bin/okteta" ];
}