Merge pull request #180560 from K900/wireplumber-0.4.11-fixes

wireplumber: backport a fix for no sound in VMs

authored by K900 and committed by GitHub 4acc1624 a8406971

+10
+10
pkgs/development/libraries/pipewire/wireplumber.nix
··· 1 { lib 2 , stdenv 3 , fetchFromGitLab 4 , nix-update-script 5 , # base build deps 6 meson ··· 37 rev = version; 38 sha256 = "sha256-3NrzOsL0MekxMMXCFubEkazzSWFNsjUsX8n2ECcr7yY="; 39 }; 40 41 nativeBuildInputs = [ 42 meson
··· 1 { lib 2 , stdenv 3 , fetchFromGitLab 4 + , fetchpatch 5 , nix-update-script 6 , # base build deps 7 meson ··· 38 rev = version; 39 sha256 = "sha256-3NrzOsL0MekxMMXCFubEkazzSWFNsjUsX8n2ECcr7yY="; 40 }; 41 + 42 + patches = [ 43 + # fix sound not working in VMs 44 + # FIXME: drop in next release 45 + (fetchpatch { 46 + url = "https://gitlab.freedesktop.org/pipewire/wireplumber/-/commit/c16e637c329bc9dda8544b18f5bd47a8d63ee253.patch"; 47 + sha256 = "sha256-xhhAlhOovwIjwAxXxvHRTG4GzpIPYvKQE2F4ZP1Udq8="; 48 + }) 49 + ]; 50 51 nativeBuildInputs = [ 52 meson