Merge pull request #227457 from Kiskae/egl-wayland-pr-79

egl-wayland: backport wayland protocol fix
This commit is contained in:
Artturi 2023-04-21 19:53:34 +03:00 committed by GitHub
commit c48cadfff9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, pkg-config
, meson
, ninja
@ -53,6 +54,15 @@ in stdenv.mkDerivation rec {
sha256 = "sha256-xb0d8spr4GoGZl/8C8BoPMPN7PAlzuQV11tEJbOQQ4U=";
};
patches = [
# remove after next update
# https://github.com/NVIDIA/egl-wayland/pull/79
(fetchpatch {
url = "https://github.com/NVIDIA/egl-wayland/commit/13737c6af4c0a7cfef5ec9013a4382bbeb7b495c.patch";
hash = "sha256-EEqI6iJb+uv0HkhnauYNxSzny4YapTm73PLgK8A9Km8=";
})
];
depsBuildBuild = [
pkg-config
];