nixpkgs/pkgs/development/libraries/libaom/default.nix

35 lines
906 B
Nix
Raw Normal View History

{ stdenv, fetchgit, yasm, perl, cmake, pkgconfig, python3, writeText }:
2018-03-30 12:05:47 +02:00
stdenv.mkDerivation rec {
2018-07-04 00:09:38 +02:00
name = "libaom-${version}";
version = "1.0.0-errata1";
2018-03-30 12:05:47 +02:00
src = fetchgit {
url = "https://aomedia.googlesource.com/aom";
2018-07-04 00:09:38 +02:00
rev = "v${version}";
2018-12-30 00:51:06 +01:00
sha256 = "090phh4jl9z6m2pwpfpwcjh6iyw0byngb2n112qxkg6a3gsaa62f";
2018-03-30 12:05:47 +02:00
};
nativeBuildInputs = [
yasm perl cmake pkgconfig python3
];
2018-03-30 12:05:47 +02: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-03-30 12:05:47 +02: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 20:06:06 +02:00
license = licenses.bsd2;
2018-03-30 12:05:47 +02:00
};
2018-07-04 00:09:38 +02:00
}