mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-17 15:58:28 +00:00
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:
commit
1688a29c64
@ -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 = ''
|
||||
|
Loading…
Reference in New Issue
Block a user