mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 20:02:14 +03:00
deluge: add glib so its hook works.
At the moment, runing `deluge` with the deluge package installed returns "No GSettings schemas are installed on the system". After this patch, XDG_DATA_DIRS includes the gsettings-desktop-schemas, which means the program actually manages to launch.
This commit is contained in:
parent
ae4d9cb9a0
commit
5da1393030
@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchurl, intltool, libtorrentRasterbar, pythonPackages
|
||||
, gtk3, gobject-introspection, librsvg, wrapGAppsHook }:
|
||||
, gtk3, glib, gobject-introspection, librsvg, wrapGAppsHook }:
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
pname = "deluge";
|
||||
@ -18,7 +18,7 @@ pythonPackages.buildPythonPackage rec {
|
||||
gtk3 gobject-introspection librsvg
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ intltool wrapGAppsHook ];
|
||||
nativeBuildInputs = [ intltool wrapGAppsHook glib ];
|
||||
|
||||
checkInputs = with pythonPackages; [
|
||||
pytest /* pytest-twisted */ pytestcov mock
|
||||
|
Loading…
Reference in New Issue
Block a user