uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
51
pkgs/development/libraries/dav1d/default.nix
Normal file
51
pkgs/development/libraries/dav1d/default.nix
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
{ lib, stdenv, fetchFromGitLab
|
||||
, meson, ninja, nasm, pkg-config
|
||||
, xxHash
|
||||
, withTools ? false # "dav1d" binary
|
||||
, withExamples ? false, SDL2 # "dav1dplay" binary
|
||||
, useVulkan ? false, libplacebo, vulkan-loader, vulkan-headers
|
||||
}:
|
||||
|
||||
assert useVulkan -> withExamples;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dav1d";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "code.videolan.org";
|
||||
owner = "videolan";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-RVr7NFVxY+6MBD8NV7eMW8TEWuCgcfqpula1o1VZe0o=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja nasm pkg-config ];
|
||||
# TODO: doxygen (currently only HTML and not build by default).
|
||||
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}"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with 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;
|
||||
changelog = "https://code.videolan.org/videolan/dav1d/-/tags/${version}";
|
||||
# More technical: https://code.videolan.org/videolan/dav1d/blob/${version}/NEWS
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ primeos ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue