waypipe: 0.9.1 -> 0.9.2 (#357168)

This commit is contained in:
jopejoe1 2024-11-28 18:59:42 +00:00 committed by GitHub
commit 017d88ec83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,26 +1,29 @@
{ lib, stdenv, fetchFromGitLab { lib, stdenv, fetchFromGitLab
, meson, ninja, pkg-config, scdoc , meson, ninja, pkg-config, scdoc
, mesa, lz4, zstd, ffmpeg, libva , mesa, lz4, zstd, ffmpeg, libva
, wayland, wayland-scanner
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "waypipe"; pname = "waypipe";
version = "0.9.1"; version = "0.9.2";
src = fetchFromGitLab { src = fetchFromGitLab {
domain = "gitlab.freedesktop.org"; domain = "gitlab.freedesktop.org";
owner = "mstoeckl"; owner = "mstoeckl";
repo = "waypipe"; repo = "waypipe";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-4I8ohllhIA3/LNgFAKH5GwwHKO5QKNex0+Be0OOgR14="; hash = "sha256-DW+WWwuav0lxnoV55L8RrX0enRURRnHMljtwEC0+9t4=";
}; };
strictDeps = true; strictDeps = true;
depsBuildBuild = [ pkg-config ]; depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [ meson ninja pkg-config scdoc ]; nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ];
buildInputs = [ buildInputs = [
# Optional dependencies: # Optional dependencies:
mesa lz4 zstd ffmpeg libva mesa lz4 zstd ffmpeg libva
wayland
]; ];
meta = with lib; { meta = with lib; {