nixpkgs/pkgs/development/libraries/libaom/default.nix
Will Dietz d349cfee88 libaom: go back to building libraries however upstream decides
Presently this means static, instead of the shared we started
building after a recent change (my blame).

Darwin build breaks with this,
and it was introduced on a whim so instead of making this
platform-specific, go back to how things were previously.
2018-12-29 23:17:58 -06:00

34 lines
907 B
Nix

{ stdenv, fetchgit, yasm, perl, cmake, pkgconfig, python3, writeText }:
stdenv.mkDerivation rec {
name = "libaom-${version}";
version = "1.0.0.errata.1";
src = fetchgit {
url = "https://aomedia.googlesource.com/aom";
rev = "v${version}";
sha256 = "090phh4jl9z6m2pwpfpwcjh6iyw0byngb2n112qxkg6a3gsaa62f";
};
nativeBuildInputs = [
yasm perl cmake pkgconfig python3
];
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
'';
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;
license = licenses.bsd2;
};
}