guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#65711] [PATCH v4 1/2] package wlr-protocols added to gnu/packages/f


From: Julian Flake
Subject: [bug#65711] [PATCH v4 1/2] package wlr-protocols added to gnu/packages/freedesktop.scm
Date: Thu, 14 Mar 2024 12:26:46 +0100

Revision 4: use latest commit of wlr-protocols

Change-Id: Ia8daffd7219b7bd573ae54e7cfc5ec6b6a5f4052
---
 gnu/packages/freedesktop.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 7b5d2dbbf2..88d0d1d080 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -1270,6 +1270,34 @@ (define-public wayland-protocols
         . "https://wayland.freedesktop.org/releases.html";)))
     (license license:expat)))
 
+(define-public wlr-protocols
+  (let ((revision "3")
+       (commit "2b8d43325b7012cc3f9b55c08d26e50e42beac7d"))
+    (package
+      (name "wlr-protocols")
+      (version (git-version "0" revision commit))
+      (source (origin
+               (method git-fetch)
+               (uri (git-reference
+                     (url 
"https://gitlab.freedesktop.org/wlroots/wlr-protocols.git";)
+                     (commit commit)))
+               (sha256
+                (base32
+                 "02ydbbbz9y0hxnpkypw9vwz7q8dzswrl1500liqq1ddgxg89zzd0"))))
+      (build-system gnu-build-system)
+      (arguments
+       '(#:make-flags (list
+                       (string-append "PREFIX=" (assoc-ref %outputs "out")))
+         #:phases (modify-phases %standard-phases
+                   (delete 'configure))))
+      (inputs
+       (list wayland))
+      (home-page "https://gitlab.freedesktop.org/wlroots/wlr-protocols";)
+      (synopsis "Wayland protocols designed for use in wlroots (and other 
compositors).")
+      (description
+       "Wayland protocols designed for use in wlroots (and other 
compositors).")
+      (license license:expat))))
+
 (define-public wayland-utils
   (package
     (name "wayland-utils")

base-commit: b6dec0108f99d75066bad15aaa124b84bb0261f3
-- 
2.41.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]