diff options
author | sss <sss@dark-alexandr.net> | 2025-07-01 02:03:23 +0300 |
---|---|---|
committer | sss <sss@dark-alexandr.net> | 2025-07-01 02:03:23 +0300 |
commit | 188f69443c0873970d41217b52e11c46d584c06d (patch) | |
tree | eab9f51137f212c7bfe7e512490748dae371b698 /wayland-protocols.nix |
nix common overlays initial commit
Diffstat (limited to 'wayland-protocols.nix')
-rw-r--r-- | wayland-protocols.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/wayland-protocols.nix b/wayland-protocols.nix new file mode 100644 index 0000000..611cb65 --- /dev/null +++ b/wayland-protocols.nix @@ -0,0 +1,13 @@ +{ inputs }: +self: super: { + wayland-protocols = + with super; + (wayland-protocols.override { }).overrideAttrs (old: rec { + version = "1.45"; + src = fetchurl { + url = "https://gitlab.freedesktop.org/wayland/${old.pname}/-/releases/${version}/downloads/${old.pname}-${version}.tar.xz"; +# hash = "sha256-J4a2sbeZZeMT8sKJwSB1ue1wDUGESBDFGv2hDuMpV2s="; + hash = "sha256-TSsqnj4JnQF9yBB78cM00nu4fZ5K/xmgyNhW0XzUHvA="; + }; + }); +} |