dav1d: init at 0.2.1

This commit is contained in:
Michael Weiss 2019-03-21 18:44:00 +01:00
parent fd26b05c07
commit 21d3eee760
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ stdenv, fetchFromGitLab, meson, ninja, nasm }:
stdenv.mkDerivation rec {
pname = "dav1d";
version = "0.2.1";
src = fetchFromGitLab {
domain = "code.videolan.org";
owner = "videolan";
repo = pname;
rev = version;
sha256 = "0diihk7lcdxxbfqp79dpvj14008zfzmayamh4vj310i524lqnkb6";
};
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 ];
};
}

View File

@ -2236,6 +2236,8 @@ in
darkstat = callPackage ../tools/networking/darkstat { };
dav1d = callPackage ../development/libraries/dav1d { };
davfs2 = callPackage ../tools/filesystems/davfs2 { };
dbeaver = callPackage ../applications/misc/dbeaver { };