ab49679292
Mostly automatic changes. Will fix evaluation/compilation later. svn path=/nixpkgs/trunk/; revision=25933
24 lines
620 B
Nix
24 lines
620 B
Nix
{ 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";
|
|
};
|
|
}
|