f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
33 lines
976 B
Nix
33 lines
976 B
Nix
{ lib, rustPlatform, fetchFromGitHub, installShellFiles }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ab-av1";
|
|
version = "0.7.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alexheretic";
|
|
repo = "ab-av1";
|
|
rev = "v${version}";
|
|
hash = "sha256-gZdlitOu0Tyur2xdPBYLZg/N2eL6oT6BasVzmx0lHE4=";
|
|
};
|
|
|
|
cargoHash = "sha256-aws8miz+HWdfL33c+BmBo01ooXJMKB9Ekdji+Uh58AQ=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd ab-av1 \
|
|
--bash <($out/bin/ab-av1 print-completions bash) \
|
|
--fish <($out/bin/ab-av1 print-completions fish) \
|
|
--zsh <($out/bin/ab-av1 print-completions zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "AV1 re-encoding using ffmpeg, svt-av1 & vmaf";
|
|
homepage = "https://github.com/alexheretic/ab-av1";
|
|
changelog = "https://github.com/alexheretic/ab-av1/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "ab-av1";
|
|
};
|
|
}
|