2021-05-04 13:56:41 +02:00
|
|
|
{ lib, stdenv, fetchzip, yasm, perl, cmake, pkg-config, python3 }:
|
2018-03-30 11:05:47 +01:00
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libaom";
|
2021-05-04 13:56:41 +02:00
|
|
|
version = "3.1.0";
|
2018-03-30 11:05:47 +01:00
|
|
|
|
2021-05-04 13:56:41 +02:00
|
|
|
src = fetchzip {
|
|
|
|
|
url = "https://aomedia.googlesource.com/aom/+archive/v${version}.tar.gz";
|
|
|
|
|
sha256 = "1v3i34jmbz1p3x8msj3vx46nl6jdzxbkr2lfbh06vard8adb16il";
|
|
|
|
|
stripRoot = false;
|
2018-03-30 11:05:47 +01:00
|
|
|
};
|
|
|
|
|
|
2020-05-22 09:17:18 +00:00
|
|
|
patches = [ ./outputs.patch ];
|
|
|
|
|
|
2018-12-17 23:22:17 +01:00
|
|
|
nativeBuildInputs = [
|
2021-01-18 22:50:56 -08:00
|
|
|
yasm perl cmake pkg-config python3
|
2018-12-17 23:22:17 +01:00
|
|
|
];
|
2018-03-30 11:05:47 +01:00
|
|
|
|
2018-12-17 23:22:17 +01: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
|
2018-12-17 08:32:50 -06:00
|
|
|
'';
|
|
|
|
|
|
2020-05-20 16:32:23 +02:00
|
|
|
# Configuration options:
|
|
|
|
|
# https://aomedia.googlesource.com/aom/+/refs/heads/master/build/cmake/aom_config_defaults.cmake
|
|
|
|
|
|
|
|
|
|
cmakeFlags = [
|
2020-05-22 09:17:18 +00:00
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
|
|
|
"-DENABLE_TESTS=OFF"
|
2021-02-11 23:28:02 -08:00
|
|
|
] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
|
2021-02-11 09:36:43 -08:00
|
|
|
# CPU detection isn't supported on Darwin and breaks the aarch64-darwin build:
|
2021-02-11 23:28:02 -08:00
|
|
|
"-DCONFIG_RUNTIME_CPU_DETECT=0"
|
2021-08-27 20:09:15 +10:00
|
|
|
] ++ lib.optionals stdenv.isAarch32 [
|
|
|
|
|
# armv7l-hf-multiplatform does not support NEON
|
|
|
|
|
# see lib/systems/platform.nix
|
|
|
|
|
"-DENABLE_NEON=0"
|
2020-05-20 16:32:23 +02:00
|
|
|
];
|
|
|
|
|
|
2020-05-22 09:17:18 +00:00
|
|
|
postFixup = ''
|
|
|
|
|
moveToOutput lib/libaom.a "$static"
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
outputs = [ "out" "bin" "dev" "static" ];
|
|
|
|
|
|
2021-01-22 00:00:13 +07:00
|
|
|
meta = with lib; {
|
2020-05-20 16:32:23 +02: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-03-31 21:11:51 -04:00
|
|
|
homepage = "https://aomedia.org/av1-features/get-started/";
|
2020-05-20 16:32:23 +02:00
|
|
|
changelog = "https://aomedia.googlesource.com/aom/+/refs/tags/v${version}/CHANGELOG";
|
|
|
|
|
maintainers = with maintainers; [ primeos kiloreux ];
|
2018-03-30 11:05:47 +01:00
|
|
|
platforms = platforms.all;
|
2018-10-17 20:06:06 +02:00
|
|
|
license = licenses.bsd2;
|
2018-03-30 11:05:47 +01:00
|
|
|
};
|
2018-07-04 01:09:38 +03:00
|
|
|
}
|