a3fe61586c
* Removed the KDE version number from all expressions except the top-level default.nix. This makes it easier to upgrade. * Deleted the old l10n versions since there doesn't seem to be a good reason to keep them around. * Don't use replaceChars (slow!) but do the name sanitization in l10n-manifest.sh. svn path=/nixpkgs/trunk/; revision=25760
24 lines
618 B
Nix
24 lines
618 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.name = "kdeadmin";
|
|
};
|
|
}
|