fix(nvidia): use override to get latest egl-wayland

This commit is contained in:
matt1432 2024-08-12 20:01:22 -04:00
parent 265a10660e
commit 9724f5f10e
3 changed files with 23 additions and 53 deletions

View file

@ -13,6 +13,20 @@ inputs: rec {
])
++ [
inputs.self.overlays.xdg-desktop-portal-kde
# FIXME: https://pr-tracker.nelim.org/?pr=333586
(final: prev: {
egl-wayland = prev.egl-wayland.overrideAttrs (o: rec {
version = "1.1.15";
src = prev.fetchFromGitHub {
owner = "Nvidia";
repo = o.pname;
rev = version;
hash = "sha256-MD+D/dRem3ONWGPoZ77j2UKcOCUuQ0nrahEQkNVEUnI=";
};
});
})
];
};