vcsi: init at 7.0.12
This commit is contained in:
parent
5d255c0660
commit
fdefec4f3d
28
pkgs/tools/video/vcsi/default.nix
Normal file
28
pkgs/tools/video/vcsi/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ lib, python3Packages, ffmpeg }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "vcsi";
|
||||||
|
version = "7.0.12";
|
||||||
|
|
||||||
|
src = python3Packages.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0dks0yr2a0cpr32vrwhdrhsb4qyj7rz1yv44fjbr8z8j8p84yjx5";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3Packages; [
|
||||||
|
numpy
|
||||||
|
pillow
|
||||||
|
jinja2
|
||||||
|
texttable
|
||||||
|
parsedatetime
|
||||||
|
];
|
||||||
|
|
||||||
|
makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Create video contact sheets";
|
||||||
|
homepage = "https://github.com/amietn/vcsi";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ dandellion ];
|
||||||
|
};
|
||||||
|
}
|
@ -7619,6 +7619,8 @@ in
|
|||||||
|
|
||||||
vbetool = callPackage ../tools/system/vbetool { };
|
vbetool = callPackage ../tools/system/vbetool { };
|
||||||
|
|
||||||
|
vcsi = callPackage ../tools/video/vcsi { };
|
||||||
|
|
||||||
vde2 = callPackage ../tools/networking/vde2 { };
|
vde2 = callPackage ../tools/networking/vde2 { };
|
||||||
|
|
||||||
vboot_reference = callPackage ../tools/system/vboot_reference {};
|
vboot_reference = callPackage ../tools/system/vboot_reference {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user