Merge pull request #157881 from SFrijters/yabridge-fix-wine-7.1

yabridge: Add upstream fix for recent wine 7.1 update
This commit is contained in:
Kira Bruneau 2022-02-02 20:06:38 -05:00 committed by GitHub
commit 1688a29c64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib
, multiStdenv
, fetchFromGitHub
, fetchpatch
, substituteAll
, pkgsi686Linux
, libnotify
@ -77,6 +78,14 @@ in multiStdenv.mkDerivation rec {
libxcb32 = pkgsi686Linux.xorg.libxcb;
inherit libnotify wine;
})
# Remove with next yabridge update
(fetchpatch {
name = "fix-for-wine-7.1.patch";
url = "https://github.com/robbert-vdh/yabridge/commit/de470d345ab206b08f6d4a147b6af1d285a4211f.patch";
sha256 = "sha256-xJx1zvxD+DIjbkm7Ovoy4RaAvjx936/j/7AYUPh/kOo=";
includes = [ "src/wine-host/xdnd-proxy.cpp" ];
})
];
postPatch = ''