gst_all_1.gst-vaapi: 1.20.3 -> 1.22.2

This commit is contained in:
Lily Foster 2023-04-13 12:39:27 -04:00
parent 26a54eba11
commit 50b8c274ea
No known key found for this signature in database
GPG key ID: 49340081E484C893

View file

@ -5,8 +5,10 @@
, pkg-config , pkg-config
, gst-plugins-base , gst-plugins-base
, bzip2 , bzip2
, hotdoc
, libva , libva
, wayland , wayland
, wayland-protocols
, libdrm , libdrm
, udev , udev
, xorg , xorg
@ -21,17 +23,16 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gstreamer-vaapi"; pname = "gstreamer-vaapi";
version = "1.20.3"; version = "1.22.2";
src = fetchurl { src = fetchurl {
url = "https://gstreamer.freedesktop.org/src/${pname}/${pname}-${version}.tar.xz"; url = "https://gstreamer.freedesktop.org/src/${pname}/${pname}-${version}.tar.xz";
sha256 = "sha256-bumesxar3emtNwApFb2MOGeRj2/cdLfPKsTBrg1pC0U="; hash = "sha256-0uZC+XRfl9n3On9Qhedlmpox/iCbd05uRdrgQbQ13wY=";
}; };
outputs = [ outputs = [
"out" "out"
"dev" "dev"
# "devdoc" # disabled until `hotdoc` is packaged in nixpkgs
]; ];
nativeBuildInputs = [ nativeBuildInputs = [
@ -40,9 +41,10 @@ stdenv.mkDerivation rec {
pkg-config pkg-config
python3 python3
bzip2 bzip2
wayland
# documentation # documentation
# TODO add hotdoc here hotdoc
]; ];
buildInputs = [ buildInputs = [
@ -51,6 +53,7 @@ stdenv.mkDerivation rec {
gst-plugins-bad gst-plugins-bad
libva libva
wayland wayland
wayland-protocols
libdrm libdrm
udev udev
xorg.libX11 xorg.libX11
@ -65,9 +68,10 @@ stdenv.mkDerivation rec {
libvpx libvpx
]; ];
strictDeps = true;
mesonFlags = [ mesonFlags = [
"-Dexamples=disabled" # requires many dependencies and probably not useful for our users "-Dexamples=disabled" # requires many dependencies and probably not useful for our users
"-Ddoc=disabled" # `hotdoc` not packaged in nixpkgs as of writing
]; ];
postPatch = '' postPatch = ''