rhythmbox: fix python plugin PYTHONPATH
This commit is contained in:
parent
cf7e4cac05
commit
e5132de7db
1 changed files with 10 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
|||
, libnotify
|
||||
, libdmapsharing
|
||||
, gnome
|
||||
, gobject-introspection
|
||||
, totem-pl-parser
|
||||
, tdb
|
||||
, json-glib
|
||||
|
@ -65,6 +66,9 @@ in stdenv.mkDerivation rec {
|
|||
totem-pl-parser
|
||||
gnome.adwaita-icon-theme
|
||||
|
||||
gobject-introspection
|
||||
python3.pkgs.pygobject3
|
||||
|
||||
gst_all_1.gstreamer
|
||||
gst_all_1.gst-plugins-base
|
||||
gst_all_1.gst-plugins-good
|
||||
|
@ -83,6 +87,12 @@ in stdenv.mkDerivation rec {
|
|||
"--with-libsecret"
|
||||
];
|
||||
|
||||
preFixup = ''
|
||||
gappsWrapperArgs+=(
|
||||
--prefix PYTHONPATH : "${python3.pkgs.pygobject3}/${python3.sitePackages}:$out/lib/rhythmbox/plugins/"
|
||||
)
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
passthru = {
|
||||
|
|
Loading…
Reference in a new issue