svtplay-dl: add ffmpeg as dependency

This commit is contained in:
Robert Helgesson 2020-11-24 20:01:07 +01:00
parent 18fab62368
commit 9a515a9d45
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, makeWrapper, python3Packages, perl, zip
, gitMinimal }:
, gitMinimal, ffmpeg }:
let
@ -33,6 +33,7 @@ in stdenv.mkDerivation rec {
postInstall = ''
wrapProgram "$out/bin/svtplay-dl" \
--prefix PATH : "${ffmpeg}" \
--prefix PYTHONPATH : "$PYTHONPATH"
'';