From 38d78225c774f829ff96ca7e1fedbdcc7da18ba8 Mon Sep 17 00:00:00 2001 From: superherointj <5861043+superherointj@users.noreply.github.com> Date: Sun, 23 Jun 2024 17:25:40 -0300 Subject: [PATCH] pipewire: fix module-roc-sink explicity specifying sender packet encoding Fixes regression: https://github.com/NixOS/nixpkgs/pull/320870#issuecomment-2185279926 Co-authored-by: CyberShadow --- pkgs/development/libraries/pipewire/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/libraries/pipewire/default.nix b/pkgs/development/libraries/pipewire/default.nix index c3532d93683d..b810939690fe 100644 --- a/pkgs/development/libraries/pipewire/default.nix +++ b/pkgs/development/libraries/pipewire/default.nix @@ -1,6 +1,7 @@ { stdenv , lib , fetchFromGitLab +, fetchpatch , python3 , meson , ninja @@ -99,6 +100,12 @@ stdenv.mkDerivation(finalAttrs: { ./0060-libjack-path.patch # Move installed tests into their own output. ./0070-installed-tests-path.patch + # fix module-roc-sink explicity specifying sender packet encoding + # https://gitlab.freedesktop.org/pipewire/pipewire/-/merge_requests/2048 + (fetchpatch { + url = "https://gitlab.freedesktop.org/pipewire/pipewire/-/commit/6acfb53884c6f3936030fe43a584bfa01c27d3ea.patch"; + hash = "sha256-UQTWnw2fJ8Sx+eMaUmbJEFopV3HPr63v4xVtk0z3/xM="; + }) ]; strictDeps = true;