Merge pull request #38614 from dotlambda/sigal

sigal: add ffmpeg to PATH
This commit is contained in:
Jörg Thalheim
2018-04-08 16:52:14 +01:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
{ lib, buildPythonApplication, fetchPypi, pythonPackages }:
{ lib, buildPythonApplication, fetchPypi, pythonPackages, ffmpeg }:
buildPythonApplication rec {
version = "1.4.0";
@@ -20,6 +20,8 @@ buildPythonApplication rec {
blinker
];
makeWrapperArgs = [ "--prefix PATH : ${ffmpeg}/bin" ];
# No tests included
doCheck = false;