nixpkgs/pkgs/tools/video/svt-av1/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.4 KiB
Nix
Raw Normal View History

2022-12-24 23:24:47 +00:00
{ lib
, stdenv
, fetchFromGitLab
, gitUpdater
, cmake
, nasm
}:
2020-12-04 14:07:42 +00:00
2022-12-24 23:24:47 +00:00
stdenv.mkDerivation (finalAttrs: {
2020-12-04 14:07:42 +00:00
pname = "svt-av1";
2023-06-21 12:56:58 +00:00
version = "1.6.0";
2020-12-04 14:07:42 +00:00
src = fetchFromGitLab {
2020-12-04 14:07:42 +00:00
owner = "AOMediaCodec";
repo = "SVT-AV1";
2022-12-24 23:24:47 +00:00
rev = "v${finalAttrs.version}";
2023-06-21 12:56:58 +00:00
sha256 = "sha256-rGe4h3d2Ql8tB/5vKFJGPkhmjMHnqgMUpnGzeh+PasA=";
2020-12-04 14:07:42 +00:00
};
2022-12-24 23:24:47 +00:00
nativeBuildInputs = [
cmake
nasm
];
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
2020-12-04 14:07:42 +00:00
meta = with lib; {
2022-12-24 23:24:47 +00:00
homepage = "https://gitlab.com/AOMediaCodec/SVT-AV1";
2020-12-04 14:07:42 +00:00
description = "AV1-compliant encoder/decoder library core";
2022-12-24 23:24:47 +00:00
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.
'';
2022-12-24 23:24:47 +00:00
changelog = "https://gitlab.com/AOMediaCodec/SVT-AV1/-/blob/v${finalAttrs.version}/CHANGELOG.md";
license = with licenses; [ aom bsd3 ];
maintainers = with maintainers; [ Madouura ];
2020-12-04 14:07:42 +00:00
platforms = platforms.unix;
2023-02-04 14:44:34 +00:00
# error: use of undeclared identifier 'kCVPixelFormatType_444YpCbCr16BiPlanarVideoRange'
broken = stdenv.isAarch64 && stdenv.isDarwin;
2020-12-04 14:07:42 +00:00
};
2022-12-24 23:24:47 +00:00
})