nixpkgs/pkgs/desktops/kde-4.10/kdeutils/print-manager.nix
Evgeny Egorochkin ee4a7cbbf4 KDE4.10 print-manager: Fix build.
Patch contributed by Karn Kallio.
2013-05-06 22:15:06 +03:00

29 lines
783 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ kde, kdelibs
, pythonPackages, cups, sip, pyqt4, pykde4, pycups, rhpl, system_config_printer
, pythonDBus, makeWrapper }:
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 ];
passthru.propagatedUserEnvPackages = [ s_c_p ];
postInstall =
''
wrapPythonPrograms
# system-config-printer supplies some D-Bus policy that we need.
mkdir -p $out/nix-support
echo ${s_c_p} > $out/nix-support/propagated-user-env-packages
'';
meta = {
description = "KDE printer manager";
longDescription = "Applet to view current print jobs and configure new printers";
};
}