[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/09: gnu: Add wev.
From: |
guix-commits |
Subject: |
04/09: gnu: Add wev. |
Date: |
Fri, 20 Mar 2020 14:18:17 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit ad64b09df4bcf0a57753c9ad2cdd442b78e205d3
Author: Brendan Tildesley <address@hidden>
AuthorDate: Sun Mar 15 20:36:16 2020 +1100
gnu: Add wev.
* gnu/packages/freedesktop.scm (wev): New variable.
Signed-off-by: Marius Bakke <address@hidden>
---
gnu/packages/freedesktop.scm | 40 +++++++++++++++++++++++++++++++++++++++-
1 file changed, 39 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 1244da4..b9811fb 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -10,7 +10,7 @@
;;; Copyright © 2017, 2018 Mark H Weaver <address@hidden>
;;; Copyright © 2017, 2018, 2019, 2020 Marius Bakke <address@hidden>
;;; Copyright © 2017, 2018, 2019 Rutger Helling <address@hidden>
-;;; Copyright © 2017 Brendan Tildesley <address@hidden>
+;;; Copyright © 2017, 2020 Brendan Tildesley <address@hidden>
;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <address@hidden>
;;; Copyright © 2018 Pierre Neidhardt <address@hidden>
;;; Copyright © 2018 Stefan Stefanović <address@hidden>
@@ -72,6 +72,7 @@
#:use-module (gnu packages libunwind)
#:use-module (gnu packages libusb)
#:use-module (gnu packages linux)
+ #:use-module (gnu packages man)
#:use-module (gnu packages m4)
#:use-module (gnu packages nss)
#:use-module (gnu packages perl)
@@ -804,6 +805,43 @@ composes the final output. A Wayland compositor is
essentially a
multiplexer to the KMS/DRM Linux kernel devices.")
(license license:expat)))
+(define-public wev
+ ;; There simple tool has no version or release yet.
+ (let ((commit "cee3dfb2a8b40ee303611018c68ae182d84a7f46"))
+ (package
+ (name "wev")
+ (version (string-append "2020-02-06-" (string-take commit 8)))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~sircmpwn/wev")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0l71v3fzgiiv6xkk365q1l08qvaymxd4kpaya6r2g8yzkr7i2hms"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; no tests
+ #:make-flags
+ (list "CC=gcc" (string-append "PREFIX=" (assoc-ref %outputs "out")))
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure))))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("scdoc" ,scdoc)))
+ (inputs
+ `(("libxkbcommon" ,libxkbcommon)
+ ("wayland" ,wayland)
+ ("wayland-protocols" ,wayland-protocols)))
+ (home-page "https://git.sr.ht/~sircmpwn/wev")
+ (synopsis "Wayland event viewer")
+ (description "Wev is a tool that opens a window, printing all events
+sent to a Wayland window, such as key presses. It is analogous to the X11 tool
+XEv.")
+ (license license:expat))))
+
(define-public exempi
(package
(name "exempi")
- branch master updated (6145b16 -> 830dab8), guix-commits, 2020/03/20
- 01/09: gnu: libiberty: Do not inherit properties from GCC., guix-commits, 2020/03/20
- 03/09: gnu: add premake5., guix-commits, 2020/03/20
- 02/09: gnu: gsettings-desktop-schemas: patch monospace font., guix-commits, 2020/03/20
- 06/09: gnu: make-libiberty: Use install-file., guix-commits, 2020/03/20
- 08/09: gnu: Add squid., guix-commits, 2020/03/20
- 07/09: gnu: emacs-projectile: Update to 2.1.0., guix-commits, 2020/03/20
- 09/09: gnu: ansible: Update to 2.9.6., guix-commits, 2020/03/20
- 05/09: gnu: Add blktrace., guix-commits, 2020/03/20
- 04/09: gnu: Add wev.,
guix-commits <=