xpra: Add python notify module.

This is not needed to run XPRA, but gets rid of a few nasty errors.

XPRA is using the notify library to display nice desktop notifications, so there
might be users who actually like to have those funny things.
This commit is contained in:
aszlig 2012-07-06 03:36:15 +02:00
parent 5cf8899673
commit ceff799efc
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, python, cython
, pygtk, pygobject, pycairo, xlibs, gtk
, pygtk, pygobject, pycairo, notify, xlibs, gtk
, ffmpeg, x264, libvpx, makeWrapper}:
stdenv.mkDerivation rec {

View file

@ -7683,7 +7683,9 @@ let
libxpdf = callPackage ../applications/misc/xpdf/libxpdf.nix {
};
xpra = callPackage ../tools/X11/xpra { };
xpra = callPackage ../tools/X11/xpra {
inherit (pythonPackages) notify;
};
xscreensaver = callPackage ../misc/screensavers/xscreensaver {
inherit (gnome) libglade;