about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2021-07-28 05:31:07 +0100
committerGitHub <noreply@github.com>2021-07-28 05:31:07 +0100
commit509685636d01c653889d0fe7da020ada72284173 (patch)
tree09ff36bcbb9753b58bbca1c0ec9e46b3140ea220 /pkgs/applications
parent9dc65fabc269c0818155f0b704d17dcf3ad90c9b (diff)
downloadnixlib-509685636d01c653889d0fe7da020ada72284173.tar
nixlib-509685636d01c653889d0fe7da020ada72284173.tar.gz
nixlib-509685636d01c653889d0fe7da020ada72284173.tar.bz2
nixlib-509685636d01c653889d0fe7da020ada72284173.tar.lz
nixlib-509685636d01c653889d0fe7da020ada72284173.tar.xz
nixlib-509685636d01c653889d0fe7da020ada72284173.tar.zst
nixlib-509685636d01c653889d0fe7da020ada72284173.zip
gpodder: fix gtk3 wrapping (#131765)
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/gpodder/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/applications/audio/gpodder/default.nix b/pkgs/applications/audio/gpodder/default.nix
index 681c6ffe2810..cd5e476b8845 100644
--- a/pkgs/applications/audio/gpodder/default.nix
+++ b/pkgs/applications/audio/gpodder/default.nix
@@ -29,8 +29,14 @@ python3Packages.buildPythonApplication rec {
     glibcLocales
   ];
 
+  # as of 2021-07, the gobject-introspection setup hook does not
+  # work with `strictDeps` enabled, thus for proper `wrapGAppsHook`
+  # it needs to be disabled explicitly. https://github.com/NixOS/nixpkgs/issues/56943
+  strictDeps = false;
+
   buildInputs = [
     python3
+    gtk3
     gobject-introspection
     gnome.adwaita-icon-theme
   ];
@@ -49,7 +55,6 @@ python3Packages.buildPythonApplication rec {
     eyeD3
     podcastparser
     html5lib
-    gtk3
   ];
 
   makeFlags = [