about summary refs log tree commit diff
path: root/pkgs/applications/audio/gpodder
diff options
context:
space:
mode:
authorColin <colin@uninsane.org>2023-06-13 03:49:35 +0000
committerColin <colin@uninsane.org>2023-06-13 03:49:35 +0000
commit10d0ac11bc083cbcf0d6340950079b3888095abf (patch)
tree8e0eed2f95f05914093b67e57b9d7b5f0e28786d /pkgs/applications/audio/gpodder
parent070ad0eecccc2353f2f3377ba538b36cadf85079 (diff)
gpodder: wrap with missing `xdg-utils` path
see: <https://github.com/NixOS/nixpkgs/pull/186538#issuecomment-1226872554>
Diffstat (limited to 'pkgs/applications/audio/gpodder')
-rw-r--r--pkgs/applications/audio/gpodder/default.nix14
1 files changed, 12 insertions, 2 deletions
diff --git a/pkgs/applications/audio/gpodder/default.nix b/pkgs/applications/audio/gpodder/default.nix
index d79aa713f0866..054d78f41aedd 100644
--- a/pkgs/applications/audio/gpodder/default.nix
+++ b/pkgs/applications/audio/gpodder/default.nix
@@ -1,6 +1,14 @@
-{ lib, fetchFromGitHub, python3, python3Packages, intltool
-, glibcLocales, gnome, gtk3, wrapGAppsHook
+{ lib
+, fetchFromGitHub
+, glibcLocales
+, gnome
 , gobject-introspection
+, gtk3
+, intltool
+, python3
+, python3Packages
+, wrapGAppsHook
+, xdg-utils
 }:
 
 python3Packages.buildPythonApplication rec {
@@ -72,6 +80,8 @@ python3Packages.buildPythonApplication rec {
     LC_ALL=C PYTHONPATH=src/:$PYTHONPATH pytest tests --ignore=src/gpodder/utilwin32ctypes.py --ignore=src/mygpoclient --cov=gpodder
   '';
 
+  makeWrapperArgs = [ "--suffix PATH : ${lib.makeBinPath [ xdg-utils ]}" ];
+
   meta = with lib; {
     description = "A podcatcher written in python";
     longDescription = ''