summaryrefslogtreecommitdiff
path: root/wayland-protocols.nix
diff options
context:
space:
mode:
Diffstat (limited to 'wayland-protocols.nix')
-rw-r--r--wayland-protocols.nix13
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=";
+ };
+ });
+}