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

23 lines
654 B
Nix
Raw Normal View History

2018-07-04 00:09:38 +02:00
{ stdenv, fetchgit, yasm, perl, cmake, pkgconfig, python3Packages }:
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";
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}";
sha256 = "07h2vhdiq7c3fqaz44rl4vja3dgryi6n7kwbwbj1rh485ski4j82";
2018-03-30 12:05:47 +02:00
};
2018-07-04 00:09:38 +02:00
buildInputs = [ perl yasm ];
nativeBuildInputs = [ cmake pkgconfig python3Packages.python ];
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-07-04 00:09:38 +02:00
}