summary refs log tree commit diff
path: root/pkgs/applications/kde/kig.nix
blob: 9636f82974b3cb1a049f114f83144bf8206b10c2 (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, kparts
  , qtsvg, qtxmlpatterns, ktexteditor, boost
}:

let
  unwrapped =
    kdeApp {
      name = "kig";
      meta = {
        license = with lib.licenses; [ gpl2 ];
        maintainers = with lib.maintainers; [ raskin ];
      };
      nativeBuildInputs = [ ecm kdoctools ];
      buildInputs = [
        kparts qtsvg qtxmlpatterns ktexteditor boost
      ];
    };
in
kdeWrapper {
  inherit unwrapped;
  targets = [ "bin/kig" ];
}