mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 08:52:25 +01:00
acsuite: fix build
ffmpeg needs to be in nativeCheckInputs for it to show up in $PATH.
This commit is contained in:
parent
17ded7214a
commit
125ed08651
|
@ -75,7 +75,7 @@ in
|
||||||
pkgs.vapoursynthPlugins.wwxd
|
pkgs.vapoursynthPlugins.wwxd
|
||||||
pkgs.vapoursynthPlugins.znedi3
|
pkgs.vapoursynthPlugins.znedi3
|
||||||
|
|
||||||
# pkgs.vapoursynthPlugins.acsuite
|
pkgs.vapoursynthPlugins.acsuite
|
||||||
pkgs.vapoursynthPlugins.adjust
|
pkgs.vapoursynthPlugins.adjust
|
||||||
pkgs.vapoursynthPlugins.astdr
|
pkgs.vapoursynthPlugins.astdr
|
||||||
# pkgs.vapoursynthPlugins.awsmfunc
|
# pkgs.vapoursynthPlugins.awsmfunc
|
||||||
|
|
|
@ -23,8 +23,10 @@ buildPythonPackage rec {
|
||||||
--replace "VapourSynth" ""
|
--replace "VapourSynth" ""
|
||||||
'';
|
'';
|
||||||
|
|
||||||
checkInputs = [
|
nativeCheckInputs = [
|
||||||
ffmpeg # the test depdends on ffmpeg from PATH
|
ffmpeg # the test depdends on ffmpeg from PATH
|
||||||
|
];
|
||||||
|
checkInputs = [
|
||||||
vapoursynth
|
vapoursynth
|
||||||
];
|
];
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
|
|
Loading…
Reference in a new issue