From 811047bd752ac6861617693ce80c15d13f4fe7fe Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 27 Jul 2020 18:46:08 +0200 Subject: dnyarri: Add youtube-dl support to gPodder I'm using gPodder to follow a bunch of YouTube channels and the internal extractor/downloader tends to be pretty unreliable. On the other hand, youtube-dl is regularily updated and supports a ton of different formats. To make sure we can actually use the extension, gPodder needs to have access to the youtube_dl Python module, so we need to add it to the propagatedBuildInputs. Signed-off-by: aszlig --- machines/aszlig/dnyarri.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'machines') diff --git a/machines/aszlig/dnyarri.nix b/machines/aszlig/dnyarri.nix index 3d9ae86a..fd6ba22c 100644 --- a/machines/aszlig/dnyarri.nix +++ b/machines/aszlig/dnyarri.nix @@ -57,7 +57,11 @@ in { }; environment.systemPackages = [ - pkgs.gpodder + (pkgs.gpodder.overrideAttrs (drv: { + propagatedBuildInputs = (drv.propagatedBuildInputs or []) ++ [ + pkgs.python3Packages.youtube-dl + ]; + })) pkgs.paperwork ]; -- cgit 1.4.1