mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
commit
ec7a34cefe
31
pkgs/development/libraries/dav1d/default.nix
Normal file
31
pkgs/development/libraries/dav1d/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user