about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libaom/default.nix
blob: a08a1e33523263bba8518b5ab41e8e3aef6b0dcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchgit, yasm, perl, cmake, pkgconfig, python3Packages }:

stdenv.mkDerivation rec {
  name = "libaom-${version}";
  version = "1.0.0";

  src = fetchgit {
    url = "https://aomedia.googlesource.com/aom";
    rev	= "v${version}";
    sha256 = "07h2vhdiq7c3fqaz44rl4vja3dgryi6n7kwbwbj1rh485ski4j82";
  };

  buildInputs = [ perl yasm ];
  nativeBuildInputs = [ cmake pkgconfig python3Packages.python ];

  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;
  };
}