From 30e045f5995d08eec7cb42dcdfcdc2af4cbe89f3 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Fri, 29 Apr 2022 16:39:35 +0200 Subject: [PATCH] xdg-desktop-portal: try to fix document-fuse tests It was missing shebang patch. But the portal still crashes so this is not sufficient. --- pkgs/development/libraries/xdg-desktop-portal/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/libraries/xdg-desktop-portal/default.nix b/pkgs/development/libraries/xdg-desktop-portal/default.nix index 19a671e7e0b0..a353dc7c8194 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 ];