mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
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:
parent
5cf8899673
commit
ceff799efc
@ -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 {
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user