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

32 lines
993 B
Nix
Raw Normal View History

2019-03-21 17:44:00 +00:00
{ stdenv, fetchFromGitLab, meson, ninja, nasm }:
stdenv.mkDerivation rec {
pname = "dav1d";
2019-05-11 16:11:48 +00:00
version = "0.3.1";
2019-03-21 17:44:00 +00:00
src = fetchFromGitLab {
domain = "code.videolan.org";
owner = "videolan";
repo = pname;
rev = version;
2019-05-11 16:11:48 +00:00
sha256 = "1m5vdg64iqxpi37l84mcfiq313g9z55zf66s85j2rqik6asmxbqg";
2019-03-21 17:44:00 +00:00
};
nativeBuildInputs = [ meson ninja nasm ];
# TODO: doxygen (currently only HTML and not build by default).
meta = with stdenv.lib; {
description = "A cross-platform AV1 decoder focused on speed and correctness";
longDescription = ''
The goal of this project is to provide a decoder for most platforms, and
achieve the highest speed possible to overcome the temporary lack of AV1
hardware decoder. It supports all features from AV1, including all
subsampling and bit-depth parameters.
'';
inherit (src.meta) homepage;
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ primeos ];
};
}