nixpkgs/pkgs/by-name/sv/svt-av1-psy/package.nix

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

56 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2024-08-30 22:33:24 -06:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
nasm,
libdovi,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "svt-av1-psy";
2024-10-11 00:03:27 -06:00
version = "2.2.1-B";
2024-08-30 22:33:24 -06:00
src = fetchFromGitHub {
owner = "gianni-rosato";
repo = "svt-av1-psy";
rev = "refs/tags/v${finalAttrs.version}";
2024-10-11 00:03:27 -06:00
hash = "sha256-3GF60XMKglpU82S5XNyW1DBYtU0KVrfghRVYokZTGoI=";
2024-08-30 22:33:24 -06:00
};
cmakeBuildType = "Release";
cmakeFlags = lib.mapAttrsToList lib.cmakeFeature {
LIBDOVI_FOUND = lib.boolToString true;
# enable when libhdr10plus is available
# LIBHDR10PLUS_RS_FOUND = lib.boolToString true;
};
nativeBuildInputs = [
cmake
nasm
];
buildInputs = [
libdovi
];
meta = {
homepage = "https://github.com/gianni-rosato/svt-av1-psy";
description = "Scalable Video Technology AV1 Encoder and Decoder";
longDescription = ''
SVT-AV1-PSY is the Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder)
with perceptual enhancements for psychovisually optimal AV1 encoding.
The goal is to create the best encoding implementation for perceptual quality with AV1.
'';
license = with lib.licenses; [
aom
bsd3
];
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ johnrtitor ];
};
})