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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab
, meson, ninja, nasm, pkg-config
2021-02-24 16:56:37 +01:00
, xxHash
, withTools ? false # "dav1d" binary
, withExamples ? false, SDL2 # "dav1dplay" binary
, useVulkan ? false, libplacebo, vulkan-loader, vulkan-headers
2019-08-06 11:18:58 +02:00
}:
2019-03-21 18:44:00 +01:00
assert useVulkan -> withExamples;
2019-03-21 18:44:00 +01:00
stdenv.mkDerivation rec {
pname = "dav1d";
2022-03-19 14:27:37 +01:00
version = "1.0.0";
2019-03-21 18:44:00 +01:00
src = fetchFromGitLab {
domain = "code.videolan.org";
owner = "videolan";
repo = pname;
rev = version;
2022-03-19 14:27:37 +01:00
sha256 = "sha256-RVr7NFVxY+6MBD8NV7eMW8TEWuCgcfqpula1o1VZe0o=";
2019-03-21 18:44:00 +01:00
};
nativeBuildInputs = [ meson ninja nasm pkg-config ];
2019-03-21 18:44:00 +01:00
# TODO: doxygen (currently only HTML and not build by default).
2021-02-24 16:56:37 +01:00
buildInputs = [ xxHash ]
++ lib.optional withExamples SDL2
++ lib.optionals useVulkan [ libplacebo vulkan-loader vulkan-headers ];
mesonFlags= [
"-Denable_tools=${lib.boolToString withTools}"
"-Denable_examples=${lib.boolToString withExamples}"
];
2019-03-21 18:44:00 +01:00
2022-03-22 01:43:01 +01:00
doCheck = true;
meta = with lib; {
2019-03-21 18:44:00 +01:00
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 21:21:39 +01:00
changelog = "https://code.videolan.org/videolan/dav1d/-/tags/${version}";
# More technical: https://code.videolan.org/videolan/dav1d/blob/${version}/NEWS
2019-03-21 18:44:00 +01:00
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ primeos ];
};
}