summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-15.12/print-manager.nix
blob: b4eab372789d68e50b19c7519971b5a24539bc89 (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
44
45
46
47
{ kdeApp
, lib
, extra-cmake-modules
, qtdeclarative
, cups
, kconfig
, kconfigwidgets
, kdbusaddons
, kiconthemes
, ki18n
, kcmutils
, kio
, knotifications
, plasma-framework
, kwidgetsaddons
, kwindowsystem
, kitemviews
}:

kdeApp {
  name = "print-manager";
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    cups
    kconfig
    kconfigwidgets
    kdbusaddons
    kiconthemes
    kcmutils
    knotifications
    kwidgetsaddons
    kitemviews
  ];
  propagatedBuildInputs = [
    ki18n
    kio
    kwindowsystem
    plasma-framework
    qtdeclarative
  ];
  meta = {
    license = [ lib.licenses.gpl2 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
}