about summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.6/admin/default.nix
blob: 8b91430ddd9c1e3e722ec955d0c5a98ffe5835cb (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
{ kde, cmake, qt4, pkgconfig, perl, python
, sip, pyqt4, pycups, rhpl, system_config_printer
, kdelibs, kdepimlibs, kdebindings, automoc4}:

kde.package {

  builder = ./builder.sh;

  inherit system_config_printer;

  # TODO: split, check which packages work on nixos

  PYTHONPATH = "${pycups}/lib/python${python.majorVersion}/site-packages";

  buildInputs = [ cmake qt4 pkgconfig perl python sip pyqt4 pycups rhpl system_config_printer
                  kdelibs kdepimlibs kdebindings automoc4 ];

  meta = {
    description = "KDE Administration Utilities";
    license = "GPL";
    kde.module = "kdeadmin";
  };
}