2022-07-14 12:49:19 +00:00
|
|
|
{ lib, stdenv, fetchzip, yasm, perl, cmake, pkg-config, python3
|
|
|
|
, enableButteraugli ? true, libjxl
|
|
|
|
, enableVmaf ? true, libvmaf
|
2023-11-16 04:20:00 +00:00
|
|
|
, gitUpdater
|
2022-07-14 12:49:19 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-11-02 22:02:43 +00:00
|
|
|
let
|
|
|
|
isCross = stdenv.buildPlatform != stdenv.hostPlatform;
|
|
|
|
in
|
2020-04-24 23:36:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libaom";
|
2023-11-16 04:20:00 +00:00
|
|
|
version = "3.7.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
src = fetchzip {
|
|
|
|
url = "https://aomedia.googlesource.com/aom/+archive/v${version}.tar.gz";
|
2023-11-16 04:20:00 +00:00
|
|
|
hash = "sha256-Zf0g/CMI73O9Dkn9o7aIvwZ/8wh3lCmVY8nZaPwBp68=";
|
2021-05-20 23:08:51 +00:00
|
|
|
stripRoot = false;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
patches = [ ./outputs.patch ];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
nativeBuildInputs = [
|
2021-02-05 17:12:51 +00:00
|
|
|
yasm perl cmake pkg-config python3
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
propagatedBuildInputs = lib.optional enableButteraugli libjxl
|
|
|
|
++ lib.optional enableVmaf libvmaf;
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
preConfigure = ''
|
|
|
|
# build uses `git describe` to set the build version
|
|
|
|
cat > $NIX_BUILD_TOP/git << "EOF"
|
|
|
|
#!${stdenv.shell}
|
|
|
|
echo v${version}
|
|
|
|
EOF
|
|
|
|
chmod +x $NIX_BUILD_TOP/git
|
|
|
|
export PATH=$NIX_BUILD_TOP:$PATH
|
|
|
|
'';
|
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
# Configuration options:
|
|
|
|
# https://aomedia.googlesource.com/aom/+/refs/heads/master/build/cmake/aom_config_defaults.cmake
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
|
|
"-DENABLE_TESTS=OFF"
|
2022-07-14 12:49:19 +00:00
|
|
|
] ++ lib.optionals enableButteraugli [
|
|
|
|
"-DCONFIG_TUNE_BUTTERAUGLI=1"
|
|
|
|
] ++ lib.optionals enableVmaf [
|
|
|
|
"-DCONFIG_TUNE_VMAF=1"
|
2021-02-13 14:23:35 +00:00
|
|
|
] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
|
|
|
|
# CPU detection isn't supported on Darwin and breaks the aarch64-darwin build:
|
|
|
|
"-DCONFIG_RUNTIME_CPU_DETECT=0"
|
2022-11-02 22:02:43 +00:00
|
|
|
] ++ lib.optionals (isCross && !stdenv.hostPlatform.isx86) [
|
2021-09-18 10:52:07 +00:00
|
|
|
"-DAS_EXECUTABLE=${stdenv.cc.targetPrefix}as"
|
|
|
|
] ++ lib.optionals stdenv.isAarch32 [
|
|
|
|
# armv7l-hf-multiplatform does not support NEON
|
|
|
|
# see lib/systems/platform.nix
|
|
|
|
"-DENABLE_NEON=0"
|
2020-06-18 07:06:33 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
moveToOutput lib/libaom.a "$static"
|
2022-11-02 22:02:43 +00:00
|
|
|
'' + lib.optionalString stdenv.hostPlatform.isStatic ''
|
|
|
|
ln -s $static $out
|
2020-06-18 07:06:33 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
outputs = [ "out" "bin" "dev" "static" ];
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gitUpdater {
|
|
|
|
url = "https://aomedia.googlesource.com/aom";
|
|
|
|
rev-prefix = "v";
|
|
|
|
ignoredVersions = "(alpha|beta|rc).*";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-06-18 07:06:33 +00:00
|
|
|
description = "Alliance for Open Media AV1 codec library";
|
|
|
|
longDescription = ''
|
|
|
|
Libaom is the reference implementation of the AV1 codec from the Alliance
|
|
|
|
for Open Media. It contains an AV1 library as well as applications like
|
|
|
|
an encoder (aomenc) and a decoder (aomdec).
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://aomedia.org/av1-features/get-started/";
|
2020-06-18 07:06:33 +00:00
|
|
|
changelog = "https://aomedia.googlesource.com/aom/+/refs/tags/v${version}/CHANGELOG";
|
2022-07-14 12:49:19 +00:00
|
|
|
maintainers = with maintainers; [ primeos kiloreux dandellion ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.all;
|
2022-11-02 22:02:43 +00:00
|
|
|
outputsToInstall = [ "bin" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
};
|
|
|
|
}
|