about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2022-04-29 16:39:35 +0200
committerJan Tojnar <jtojnar@gmail.com>2022-04-30 23:01:45 +0200
commit30e045f5995d08eec7cb42dcdfcdc2af4cbe89f3 (patch)
treef21c75e5c27b06e0dec94471246e3713643e01b8 /pkgs/development/libraries
parent78f6f779627c89823d8402aac658418ef188be1c (diff)
xdg-desktop-portal: try to fix document-fuse tests
It was missing shebang patch.
But the portal still crashes so this is not sufficient.
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/xdg-desktop-portal/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/libraries/xdg-desktop-portal/default.nix b/pkgs/development/libraries/xdg-desktop-portal/default.nix
index 19a671e7e0b0a..a353dc7c81944 100644
--- a/pkgs/development/libraries/xdg-desktop-portal/default.nix
+++ b/pkgs/development/libraries/xdg-desktop-portal/default.nix
@@ -14,6 +14,7 @@
 , libxml2
 , nixosTests
 , pipewire
+, python3
 , pkg-config
 , stdenv
 , substituteAll
@@ -59,6 +60,11 @@ stdenv.mkDerivation rec {
     json-glib
     libportal
     pipewire
+
+    # For document-fuse installed test.
+    (python3.withPackages (pp: with pp; [
+      pygobject3
+    ]))
   ] ++ lib.optionals enableGeoLocation [
     geoclue2
   ];