2019-08-06 11:18:58 +02:00
|
|
|
{ stdenv, fetchFromGitLab
|
2019-08-06 12:51:12 +02:00
|
|
|
, meson, ninja, nasm, pkgconfig
|
|
|
|
, withTools ? false, SDL2
|
2019-08-06 11:18:58 +02:00
|
|
|
}:
|
2019-03-21 18:44:00 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "dav1d";
|
2019-08-06 11:18:58 +02:00
|
|
|
version = "0.4.0";
|
2019-03-21 18:44:00 +01:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "code.videolan.org";
|
|
|
|
owner = "videolan";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-08-06 11:18:58 +02:00
|
|
|
sha256 = "1fbalfzw8j00vwbrh9h8kjdx6h99dr10vmvbpg3rhsspmxq9h66h";
|
2019-03-21 18:44:00 +01:00
|
|
|
};
|
|
|
|
|
2019-08-06 12:51:12 +02:00
|
|
|
nativeBuildInputs = [ meson ninja nasm pkgconfig ];
|
2019-03-21 18:44:00 +01:00
|
|
|
# TODO: doxygen (currently only HTML and not build by default).
|
2019-08-06 12:51:12 +02:00
|
|
|
buildInputs = stdenv.lib.optional withTools SDL2;
|
|
|
|
|
|
|
|
mesonFlags= [
|
|
|
|
"-Denable_tools=${stdenv.lib.boolToString withTools}"
|
|
|
|
];
|
2019-03-21 18:44:00 +01:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|