summary refs log tree commit diff
path: root/pkgs/applications/kde-apps-15.08/ark.nix
blob: b0bf81e0b5bba4af96139b7c82fb14ba1e7d89e2 (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
{ kdeApp
, lib
, extra-cmake-modules
, kdoctools
, karchive
, kconfig
, kcrash
, kdbusaddons
, ki18n
, kiconthemes
, khtml
, kio
, kservice
, kpty
, kwidgetsaddons
, libarchive
}:

kdeApp {
  name = "ark";
  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
  ];
  buildInputs = [
    karchive
    kconfig
    kcrash
    kdbusaddons
    ki18n
    kiconthemes
    khtml
    kio
    kservice
    kpty
    kwidgetsaddons
    libarchive
  ];
  meta = {
    license = with lib.licenses; [ gpl2 lgpl3 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
}