GNU bug report logs -
#47524
[PATCH] gnu: Add wlogout.
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Sat, 10 Apr 2021 22:50:39 +0200
with message-id <87fszx27a8.fsf <at> gnu.org>
and subject line Re: bug#47524: [PATCH] gnu: Add wlogout.
has caused the debbugs.gnu.org bug report #47524,
regarding [PATCH] gnu: Add wlogout.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
47524: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=47524
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* gnu/packages/wm.scm (wlogout): New variable.
---
gnu/packages/wm.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 6105a98f14..d61d0a11b0 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -44,6 +44,7 @@
;;; Copyright © 2021 Zheng Junjie <873216071 <at> qq.com>
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus <at> gmail.com>
;;; Copyright © 2021 qblade <qblade <at> protonmail.com>
+;;; Copyright © 2021 lasnesne <lasnesne <at> lagunposprasihopre.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2451,3 +2452,39 @@ read and write, and compatible with JSON.")
"Hikari is a stacking Wayland compositor with additional tiling
capabilities. It is heavily inspired by the Calm Window manager(cwm).")
(license license:bsd-2)))
+
+(define-public wlogout
+ (package
+ (name "wlogout")
+ (version "1.1.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ArtsyMacaw/wlogout")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1swhzkqkzli59c89pvrakfvicd00x7ga860c3x2pbb4y3xziqfvi"))))
+ (build-system meson-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("scdoc" ,scdoc)))
+ (inputs
+ `(("gtk-layer-shell" ,gtk-layer-shell)
+ ("gtk+" ,gtk+)))
+ (arguments
+ '(#:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-source-paths
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (substitute* "main.c"
+ (("/usr/share") (string-append out "/share"))
+ (("/etc") (string-append out "/etc"))))
+ #t)))))
+ (home-page "https://github.com/ArtsyMacaw/wlogout")
+ (synopsis "Logout menu for wayland")
+ (description "wlogout is a logout menu for wayland environments")
+ (license license:expat)))
--
2.31.1
[Message part 3 (message/rfc822, inline)]
[Message part 4 (text/plain, inline)]
Hi,
la snesne <lasnesne <at> lagunposprasihopre.org> skribis:
> * gnu/packages/wm.scm (wlogout): New variable.
Applied with the following cosmetic changes, thanks!
Ludo’.
[Message part 5 (text/x-patch, inline)]
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 2ad9b8a034..90896c2b89 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -2485,6 +2485,6 @@ capabilities. It is heavily inspired by the Calm Window manager(cwm).")
(("/etc") (string-append out "/etc"))))
#t)))))
(home-page "https://github.com/ArtsyMacaw/wlogout")
- (synopsis "Logout menu for wayland")
- (description "wlogout is a logout menu for wayland environments")
+ (synopsis "Logout menu for Wayland")
+ (description "wlogout is a logout menu for Wayland environments.")
(license license:expat)))
This bug report was last modified 4 years and 103 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.