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

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

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