2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchgit, yasm, perl, cmake, pkgconfig, python3 }:
|
2018-03-30 11:05:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libaom";
|
2020-05-20 15:32:23 +01:00
|
|
|
version = "2.0.0";
|
2018-03-30 11:05:47 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://aomedia.googlesource.com/aom";
|
2018-07-03 23:09:38 +01:00
|
|
|
rev = "v${version}";
|
2020-05-20 15:32:23 +01:00
|
|
|
sha256 = "1616xjhj6770ykn82ml741h8hx44v507iky3s9h7a5lnk9d4cxzy";
|
2018-03-30 11:05:47 +01:00
|
|
|
};
|
|
|
|
|
2020-05-22 10:17:18 +01:00
|
|
|
patches = [ ./outputs.patch ];
|
|
|
|
|
2018-12-17 22:22:17 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
yasm perl cmake pkgconfig python3
|
|
|
|
];
|
2018-03-30 11:05:47 +01:00
|
|
|
|
2018-12-17 22:22:17 +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
|
2018-12-17 14:32:50 +00:00
|
|
|
'';
|
|
|
|
|
2020-05-20 15:32:23 +01:00
|
|
|
# Configuration options:
|
|
|
|
# https://aomedia.googlesource.com/aom/+/refs/heads/master/build/cmake/aom_config_defaults.cmake
|
|
|
|
|
|
|
|
cmakeFlags = [
|
2020-05-22 10:17:18 +01:00
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
|
|
"-DENABLE_TESTS=OFF"
|
2020-05-20 15:32:23 +01:00
|
|
|
];
|
|
|
|
|
2020-05-22 10:17:18 +01:00
|
|
|
postFixup = ''
|
|
|
|
moveToOutput lib/libaom.a "$static"
|
|
|
|
'';
|
|
|
|
|
|
|
|
outputs = [ "out" "bin" "dev" "static" ];
|
|
|
|
|
2018-03-30 11:05:47 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-05-20 15:32:23 +01: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-01 02:11:51 +01:00
|
|
|
homepage = "https://aomedia.org/av1-features/get-started/";
|
2020-05-20 15:32:23 +01: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 19:06:06 +01:00
|
|
|
license = licenses.bsd2;
|
2018-03-30 11:05:47 +01:00
|
|
|
};
|
2018-07-03 23:09:38 +01:00
|
|
|
}
|