2019-06-16 12:59:06 -07:00
|
|
|
{ stdenv, fetchgit, yasm, perl, cmake, pkgconfig, python3 }:
|
2018-03-30 03:05:47 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libaom";
|
2019-01-19 07:55:08 -08:00
|
|
|
version = "1.0.0-errata1";
|
2018-03-30 03:05:47 -07:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://aomedia.googlesource.com/aom";
|
2018-07-03 15:09:38 -07:00
|
|
|
rev = "v${version}";
|
2018-12-29 15:51:06 -08:00
|
|
|
sha256 = "090phh4jl9z6m2pwpfpwcjh6iyw0byngb2n112qxkg6a3gsaa62f";
|
2018-03-30 03:05:47 -07:00
|
|
|
};
|
|
|
|
|
2018-12-17 14:22:17 -08:00
|
|
|
nativeBuildInputs = [
|
|
|
|
yasm perl cmake pkgconfig python3
|
|
|
|
];
|
2018-03-30 03:05:47 -07:00
|
|
|
|
2018-12-17 14:22:17 -08: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 06:32:50 -08:00
|
|
|
'';
|
|
|
|
|
2018-03-30 03:05:47 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "AV1 Bitstream and Decoding Library";
|
|
|
|
homepage = https://aomedia.org/av1-features/get-started/;
|
|
|
|
maintainers = with maintainers; [ kiloreux ];
|
|
|
|
platforms = platforms.all;
|
2018-10-17 11:06:06 -07:00
|
|
|
license = licenses.bsd2;
|
2018-03-30 03:05:47 -07:00
|
|
|
};
|
2018-07-03 15:09:38 -07:00
|
|
|
}
|