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
32
pkgs/development/libraries/libva/utils.nix
Normal file
32
pkgs/development/libraries/libva/utils.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config
|
||||
, libdrm, libva, libX11, libXext, libXfixes, wayland
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libva-utils";
|
||||
version = "2.14.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "intel";
|
||||
repo = "libva-utils";
|
||||
rev = version;
|
||||
sha256 = "sha256-WuNJCFBbXbLSftL+L15ruq9PxM1XhIfYpP/IccB+aBs=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||
|
||||
buildInputs = [ libdrm libva libX11 libXext libXfixes wayland ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A collection of utilities and examples for VA-API";
|
||||
longDescription = ''
|
||||
libva-utils is a collection of utilities and examples to exercise VA-API
|
||||
in accordance with the libva project.
|
||||
'';
|
||||
homepage = "https://github.com/intel/libva-utils";
|
||||
changelog = "https://raw.githubusercontent.com/intel/libva-utils/${version}/NEWS";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue