guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: Add rofi-wayland.


From: guix-commits
Subject: 03/05: gnu: Add rofi-wayland.
Date: Sat, 19 Nov 2022 09:00:21 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit 04b5450ad852735dfa50961d3afc789b2e52b407
Author: Hilton Chain <hako@ultrarare.space>
AuthorDate: Sun Nov 13 14:39:02 2022 +0800

    gnu: Add rofi-wayland.
    
    * gnu/packages/xdisorg.scm (rofi-wayland): New variable.
    
    Signed-off-by: Christopher Baines <mail@cbaines.net>
---
 gnu/packages/xdisorg.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 2012fcbdf8..298e6f3e47 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -1873,6 +1873,30 @@ applications you regularly use and also allows you to 
search for an application
 by name.")
     (license license:expat)))
 
+(define-public rofi-wayland
+  (let ((base rofi))
+    (package
+      (inherit rofi)
+      (name "rofi-wayland")
+      (version "1.7.5+wayland1")
+      (source (origin
+                (method url-fetch)
+                (uri (string-append "https://github.com/lbonn/rofi";
+                                    "/releases/download/" version
+                                    "/rofi-" version ".tar.xz"))
+                (sha256
+                 (base32
+                  "09n71wv3nxpzpjmvqmxlxk0zfln3x2l8admfq571781p9hw0w6wp"))))
+      (build-system meson-build-system)
+      (inputs
+       (modify-inputs (package-inputs base)
+         (append wayland wayland-protocols)))
+      (description
+       (string-append
+        (package-description base)
+        "  This package, @code{rofi-wayland}, provides additional wayland
+support.")))))
+
 (define-public rofi-calc
   (package
     (name "rofi-calc")



reply via email to

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