emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#41383: closed ([PATCH] gnu: Add wofi)


From: GNU bug Tracking System
Subject: bug#41383: closed ([PATCH] gnu: Add wofi)
Date: Tue, 19 May 2020 16:33:02 +0000

Your message dated Tue, 19 May 2020 18:32:45 +0200
with message-id <address@hidden>
and subject line Re: [bug#41383] [PATCH] gnu: Add wofi
has caused the debbugs.gnu.org bug report #41383,
regarding [PATCH] gnu: Add wofi
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
41383: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=41383
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add wofi Date: Tue, 19 May 2020 00:01:46 +0100
* gnu/packages/xdisorg.scm (wofi): New variable
---
 gnu/packages/xdisorg.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 256b86a39a..88719775df 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -58,6 +58,7 @@
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix git-download)
+  #:use-module (guix hg-download)
   #:use-module (guix utils)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
@@ -2358,3 +2359,31 @@ is to find @file{.desktop} files and offer you a menu to 
start an application
 using @command{dmenu}.")
     (home-page "https://github.com/enkore/j4-dmenu-desktop";)
     (license license:gpl3+)))
+
+(define-public wofi
+  (package
+    (name "wofi")
+    (version "1.1.2")
+    (source (origin
+              (method hg-fetch)
+              (uri (hg-reference
+                    (url "https://hg.sr.ht/~scoopta/wofi";)
+                    (changeset (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "086j5wshawjbwdmmmldivfagc2rr7g5a2gk11l0snqqslm294xsn"))))
+    (build-system meson-build-system)
+    (arguments
+     `(#:glib-or-gtk? #t))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("gtk3" ,gtk+)
+       ("wayland" ,wayland)))
+    (synopsis "Launcher/menu program for wayland")
+    (description
+     "Wofi is a launcher/menu program for wlroots based wayland compositors
+such as sway, similar to @command{rofi}.")
+    (home-page "https://hg.sr.ht/~scoopta/wofi";)
+    (license license:gpl3+)))
-- 
2.26.2




--- End Message ---
--- Begin Message --- Subject: Re: [bug#41383] [PATCH] gnu: Add wofi Date: Tue, 19 May 2020 18:32:45 +0200
Hi,

pushed to Guix master as commit 970fcb0d4ae5f5ee659c001049aed63a219819dd.

Thanks!

Attachment: pgpQM14sgxjEB.pgp
Description: OpenPGP digital signature


--- End Message ---

reply via email to

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