mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
auto-editor: 22w25a -> 22w32a
This commit is contained in:
parent
9c219e667b
commit
d95175c588
@ -1,18 +1,24 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, python310Packages }:
|
{ stdenv, lib, ffmpeg, fetchFromGitHub, python310Packages }:
|
||||||
|
|
||||||
python310Packages.buildPythonApplication rec {
|
python310Packages.buildPythonApplication rec {
|
||||||
pname = "auto-editor";
|
pname = "auto-editor";
|
||||||
version = "22w25a";
|
version = "22w32a";
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "WyattBlue";
|
owner = "WyattBlue";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-SKlAgGqowFvvenhbFiTWbVLYAB5CChQ+EdPXxsWxNgE=";
|
sha256 = "sha256-VbEr3/8PmV9mShoyv2hsc0rX8RUM39lgVk5HGe5DKYY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
sed ./setup.py -i -E \
|
||||||
|
-e "/ae-ffmpeg==1.0.0/d"
|
||||||
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = with python310Packages; [ numpy yt-dlp av pillow ];
|
propagatedBuildInputs = with python310Packages; [ numpy yt-dlp av pillow ];
|
||||||
|
runtimeDependencies = [ ffmpeg ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description =
|
description =
|
||||||
|
Loading…
Reference in New Issue
Block a user