nixpkgs/pkgs/tools/video/rav1e/default.nix

33 lines
984 B
Nix
Raw Normal View History

{ rustPlatform, fetchFromGitHub, lib, nasm }:
2019-12-14 18:18:31 +00:00
rustPlatform.buildRustPackage rec {
pname = "rav1e";
version = "0.3.3";
2019-12-14 18:18:31 +00:00
src = fetchFromGitHub {
owner = "xiph";
repo = "rav1e";
rev = "v${version}";
sha256 = "0a9dryag4x35a2c45qiq1j5xk9ydcpw1g6kici85d2yrc2z3hwrx";
2019-12-14 18:18:31 +00:00
};
cargoSha256 = "1xaincrmpicp0skf9788w5631x1hxvifvq06hh5ribdz79zclzx3";
2019-12-14 18:18:31 +00:00
nativeBuildInputs = [ nasm ];
meta = with lib; {
description = "The fastest and safest AV1 encoder";
longDescription = ''
rav1e is an AV1 video encoder. It is designed to eventually cover all use
cases, though in its current form it is most suitable for cases where
libaom (the reference encoder) is too slow.
Features: https://github.com/xiph/rav1e#features
'';
inherit (src.meta) homepage;
2020-05-29 19:16:25 +00:00
changelog = "https://github.com/xiph/rav1e/releases/tag/v${version}";
2019-12-14 18:18:31 +00:00
license = licenses.bsd2;
maintainers = [ maintainers.primeos ];
platforms = platforms.all;
};
}