mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
22 lines
604 B
Nix
22 lines
604 B
Nix
{ kde, kdelibs
|
|
, pythonPackages, cups, pyqt4, pykde4, pycups, system_config_printer }:
|
|
|
|
let s_c_p = system_config_printer.override { withGUI = false; }; in
|
|
|
|
kde rec {
|
|
buildInputs = [ kdelibs pythonPackages.python pythonPackages.wrapPython
|
|
] ++ pythonPath;
|
|
|
|
pythonPath = [ cups pyqt4 pykde4 pycups s_c_p ];
|
|
|
|
# system-config-printer supplies some D-Bus policy that we need.
|
|
propagatedUserEnvPkgs = [ s_c_p ];
|
|
|
|
postInstall = "wrapPythonPrograms";
|
|
|
|
meta = {
|
|
description = "KDE printer manager";
|
|
longDescription = "Applet to view current print jobs and configure new printers";
|
|
};
|
|
}
|