xdg-desktop-portal: try to fix document-fuse tests

It was missing shebang patch.
But the portal still crashes so this is not sufficient.
This commit is contained in:
Jan Tojnar 2022-04-29 16:39:35 +02:00
parent 78f6f77962
commit 30e045f599

View file

@ -14,6 +14,7 @@
, libxml2 , libxml2
, nixosTests , nixosTests
, pipewire , pipewire
, python3
, pkg-config , pkg-config
, stdenv , stdenv
, substituteAll , substituteAll
@ -59,6 +60,11 @@ stdenv.mkDerivation rec {
json-glib json-glib
libportal libportal
pipewire pipewire
# For document-fuse installed test.
(python3.withPackages (pp: with pp; [
pygobject3
]))
] ++ lib.optionals enableGeoLocation [ ] ++ lib.optionals enableGeoLocation [
geoclue2 geoclue2
]; ];