mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 08:52:25 +01:00
vapoursynthPlugins.acsuite: init at 6.0.0
This commit is contained in:
parent
9ae72167c4
commit
bb7244d361
|
@ -45,6 +45,7 @@ in
|
||||||
wwxd = super.callPackage ./plugins/wwxd { };
|
wwxd = super.callPackage ./plugins/wwxd { };
|
||||||
znedi3 = super.callPackage ./plugins/znedi3 { };
|
znedi3 = super.callPackage ./plugins/znedi3 { };
|
||||||
|
|
||||||
|
acsuite = callPythonPackage ./plugins/acsuite { };
|
||||||
adjust = callPythonPackage ./plugins/adjust { };
|
adjust = callPythonPackage ./plugins/adjust { };
|
||||||
edi_rpow2 = callPythonPackage ./plugins/edi_rpow2 { };
|
edi_rpow2 = callPythonPackage ./plugins/edi_rpow2 { };
|
||||||
mt_lutspa = callPythonPackage ./plugins/mt_lutspa { };
|
mt_lutspa = callPythonPackage ./plugins/mt_lutspa { };
|
||||||
|
|
48
plugins/acsuite/default.nix
Normal file
48
plugins/acsuite/default.nix
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{ lib, buildPythonPackage, fetchFromGitHub, ffmpeg, vapoursynth }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "acsuite";
|
||||||
|
version = "6.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "OrangeChannel";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0m7xfg2jifq7hz7vaxvb15hgq4abna7b2zgjahjgscxjk2r4lg46";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# Sets the default ffmpeg executable to nixpkgs’ ffmpeg. This still allows
|
||||||
|
# overriding the executable by passing ffmpeg_path.
|
||||||
|
substituteInPlace acsuite/__init__.py \
|
||||||
|
--replace 'raise FileNotFoundError("concat: ffmpeg executable not found in PATH")' 'ffmpeg_path = "${ffmpeg}/bin/ffmpeg"'
|
||||||
|
|
||||||
|
# This does not depend on vapoursynth (since this is used from within
|
||||||
|
# vapoursynth).
|
||||||
|
substituteInPlace requirements.txt \
|
||||||
|
--replace "VapourSynth" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
ffmpeg # the test depdends on ffmpeg from PATH
|
||||||
|
vapoursynth
|
||||||
|
];
|
||||||
|
checkPhase = ''
|
||||||
|
runHook preCheck
|
||||||
|
|
||||||
|
pushd tests
|
||||||
|
python3 test_acsuite.py
|
||||||
|
popd
|
||||||
|
|
||||||
|
runHook postCheck
|
||||||
|
'';
|
||||||
|
pythonImportsCheck = [ "acsuite" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "An audiocutter.py replacement for VapourSynth using FFmpeg";
|
||||||
|
homepage = "https://github.com/OrangeChannel/acsuite";
|
||||||
|
license = licenses.unlicense;
|
||||||
|
maintainers = with maintainers; [ sbruder ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue