b18031c413
* maintainers: remove chiiruno * nixos/zeronet.nix: replace chiiruno with Madouura * nixos/hydron: replace chiiruno with Madouura * nixos/tests/bcachefs: replace chiiruno with Madouura * lutris: replace chiiruno with Madouura * qtchan: replace chiiruno with Madouura * tinygo: replace chiiruno with Madouura * vlang: replace chiiruno with Madouura * merkletools: replace chiiruno with Madouura * easyjson: replace chiiruno with Madouura * quicktemplate: replace chiiruno with Madouura * statik: replace chiiruno with Madouura * dumb: replace chiiruno with Madouura * sndio: replace chiiruno with Madouura * hydron: replace chiiruno with Madouura * edid-decode-unstable: replace chiiruno with Madouura * tewisay: replace chiiruno with Madouura * svt-av1: replace chiiruno with Madouura
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitLab, cmake, nasm }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "svt-av1";
|
|
version = "0.9.1";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "AOMediaCodec";
|
|
repo = "SVT-AV1";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-PIr2bCEKj1dXKiGWloZv2v+ed6JdHK3z+p11ugWGzAk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake nasm ];
|
|
|
|
meta = with lib; {
|
|
description = "AV1-compliant encoder/decoder library core";
|
|
longDescription = ''
|
|
The Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder) is an
|
|
AV1-compliant encoder/decoder library core. The SVT-AV1 encoder
|
|
development is a work-in-progress targeting performance levels applicable
|
|
to both VOD and Live encoding / transcoding video applications. The
|
|
SVT-AV1 decoder implementation is targeting future codec research
|
|
activities.
|
|
'';
|
|
inherit (src.meta) homepage;
|
|
changelog = "https://gitlab.com/AOMediaCodec/SVT-AV1/-/blob/v${version}/CHANGELOG.md";
|
|
license = with licenses; [
|
|
aom
|
|
bsd2
|
|
bsd3
|
|
];
|
|
platforms = platforms.unix;
|
|
broken = stdenv.isAarch64; # undefined reference to `cpuinfo_arm_linux_init'
|
|
maintainers = with maintainers; [ Madouura ];
|
|
};
|
|
}
|