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

48 lines
1.6 KiB
Nix
Raw Normal View History

2020-05-20 17:39:39 +00:00
{ stdenv, fetchFromGitLab
, meson, ninja, nasm, pkgconfig
, withTools ? false # "dav1d" binary
, withExamples ? false, SDL2 # "dav1dplay" binary
, useVulkan ? false, libplacebo, vulkan-loader, vulkan-headers
2019-08-06 09:18:58 +00:00
}:
2019-03-21 17:44:00 +00:00
assert useVulkan -> withExamples;
2019-03-21 17:44:00 +00:00
stdenv.mkDerivation rec {
pname = "dav1d";
2020-11-25 11:32:57 +00:00
version = "0.8.0";
2019-03-21 17:44:00 +00:00
src = fetchFromGitLab {
domain = "code.videolan.org";
owner = "videolan";
repo = pname;
rev = version;
2020-11-25 11:32:57 +00:00
sha256 = "0mjn87xjdqv0q1gj4s4f6fdmsj504mhk4qmqiyrhq2rs7yqj4csv";
2019-03-21 17:44:00 +00:00
};
nativeBuildInputs = [ meson ninja nasm pkgconfig ];
2019-03-21 17:44:00 +00:00
# TODO: doxygen (currently only HTML and not build by default).
buildInputs = stdenv.lib.optional withExamples SDL2
++ stdenv.lib.optionals useVulkan [ libplacebo vulkan-loader vulkan-headers ];
mesonFlags= [
"-Denable_tools=${stdenv.lib.boolToString withTools}"
"-Denable_examples=${stdenv.lib.boolToString withExamples}"
];
2019-03-21 17:44:00 +00: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;
2020-03-06 20:21:39 +00:00
changelog = "https://code.videolan.org/videolan/dav1d/-/tags/${version}";
# More technical: https://code.videolan.org/videolan/dav1d/blob/${version}/NEWS
2019-03-21 17:44:00 +00:00
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ primeos ];
};
}