diff options
| author | Jörg Thalheim <Mic92@users.noreply.github.com> | 2021-07-28 04:22:19 +0100 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2021-07-28 07:14:03 +0000 |
| commit | c4037352d1c40a8f3b58f6d4393e333c1013eb94 (patch) | |
| tree | 4459232bc271e70ee3b70ffd3ed61cacfbdcfb8c | |
| parent | gpodder: fix gtk3 wrapping (diff) | |
| download | nixpkgs-origin/backport-131765-to-release-21.05.tar.gz | |
Update pkgs/applications/audio/gpodder/default.nixorigin/backport-131765-to-release-21.05
(cherry picked from commit 0f2685217c7402175988cbb2c525ab072da41904)
| -rw-r--r-- | pkgs/applications/audio/gpodder/default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/audio/gpodder/default.nix b/pkgs/applications/audio/gpodder/default.nix index 7696858ef506..cd5e476b8845 100644 --- a/pkgs/applications/audio/gpodder/default.nix +++ b/pkgs/applications/audio/gpodder/default.nix @@ -29,6 +29,9 @@ 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 = [ |
