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
22 lines
671 B
Nix
22 lines
671 B
Nix
{ kde, cmake, kdelibs, qt4, perl, automoc4
|
|
, python, sip, pyqt4, pycups, rhpl, system_config_printer, kdebindings,
|
|
pythonDBus, makeWrapper }:
|
|
|
|
kde.package {
|
|
buildInputs = [ cmake qt4 perl kdelibs automoc4 python sip pyqt4 pycups rhpl
|
|
system_config_printer kdebindings makeWrapper pythonDBus ];
|
|
|
|
postInstall="wrapProgram $out/bin/printer-applet --set PYTHONPATH $PYTHONPATH";
|
|
|
|
meta = {
|
|
description = "KDE printer applet";
|
|
longDescription = "Applet to view current print jobs and configure new printers";
|
|
kde = {
|
|
name = "printer-applet";
|
|
module = "kdeutils";
|
|
version = "1.5";
|
|
versionFile = "printer-applet.py";
|
|
};
|
|
};
|
|
}
|