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
commit 2cf5f9792c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;