2024-04-21 22:04:36 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2024-04-17 23:10:24 +02:00
|
|
|
|
2024-04-23 16:34:33 +02:00
|
|
|
let
|
|
|
|
newer_egl-wayland = self: super: {
|
|
|
|
egl-wayland = super.xwayland.overrideAttrs (prev: {
|
|
|
|
# version = "23.2.6-HEAD";
|
|
|
|
src = pkgs.fetchFromGitHab {
|
|
|
|
# domain = "gitlab.freedesktop.org";
|
|
|
|
owner = "NVIDIA";
|
|
|
|
repo = "egl-wayland";
|
|
|
|
rev = "067e43d0d4af82e4ea3fdc8ce476e6a24f69956f";
|
|
|
|
sha256 = "93DzgA8nXVodDvllCOIuTtOYWpUdXwzPIGpi2SUSNqo=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
in
|
2024-04-21 22:04:36 +02:00
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
2024-04-23 16:34:33 +02:00
|
|
|
egl-wayland
|
2024-04-21 22:04:36 +02:00
|
|
|
];
|
2024-04-11 22:14:55 +02:00
|
|
|
}
|