evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ab / ab-av1 / package.nix
blobd31a67f36409baf08015be0bc35e61d2b6ce5e00
1 { lib, rustPlatform, fetchFromGitHub, installShellFiles, stdenv }:
3 rustPlatform.buildRustPackage rec {
4   pname = "ab-av1";
5   version = "0.7.19";
7   src = fetchFromGitHub {
8     owner = "alexheretic";
9     repo = "ab-av1";
10     rev = "v${version}";
11     hash = "sha256-5gDPbljvy5Kp3s+oo5LkI0rUR2zSVK2wDh4k2HrsLFc=";
12   };
14   cargoHash = "sha256-MIZGAlcBeQ03ScleOcM0WxgQEfjpFbRq1dK1/PjZbCQ=";
16   nativeBuildInputs = [ installShellFiles ];
18   postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
19     installShellCompletion --cmd ab-av1 \
20       --bash <($out/bin/ab-av1 print-completions bash) \
21       --fish <($out/bin/ab-av1 print-completions fish) \
22       --zsh <($out/bin/ab-av1 print-completions zsh)
23   '';
25   meta = with lib; {
26     description = "AV1 re-encoding using ffmpeg, svt-av1 & vmaf";
27     homepage = "https://github.com/alexheretic/ab-av1";
28     changelog = "https://github.com/alexheretic/ab-av1/blob/${src.rev}/CHANGELOG.md";
29     license = licenses.mit;
30     maintainers = [ ];
31     mainProgram = "ab-av1";
32   };