summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndrew Wong <wongandj@icloud.com>2025-06-22 19:42:34 -0400
committerjgart <jgart@dismail.de>2025-06-22 21:20:57 -0400
commit72902b4199aaeb2f944e833f40e7b3db9aca5efb (patch)
tree89ba4497560d8855ed728c2301c580d32f657748 /gnu
parent1cbe0d7db60b28f985b0085210dc961b31b86284 (diff)
gnu: dex: Update to 0.10.1.
* gnu/packages/xdisorg.scm (dex): Update to 0.10.1. [arguments]: Switch to G-expressions and implement tests. [description]: Mention autostart functionality. Change-Id: I8462ce6de80bdf46594b39caee36488fcd2cd810 Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/xdisorg.scm22
1 files changed, 13 insertions, 9 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 1e978410382..143ff043f91 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -3756,7 +3756,7 @@ applications for Sway and other wlroots-based Wayland compositors.")
(define-public dex
(package
(name "dex")
- (version "0.9.0")
+ (version "0.10.1")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -3764,15 +3764,18 @@ applications for Sway and other wlroots-based Wayland compositors.")
(commit (string-append "v" version))))
(sha256
(base32
- "03aapcywnz4kl548cygpi25m8adwbmqlmwgxa66v4156ax9dqs86"))
+ "1d7fqy63i4q0mw316i5ws1sgdq3f7h3bsf3avvmy0nzshz7i5y6m"))
(file-name (git-file-name name version))))
(build-system gnu-build-system)
(arguments
- `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
- #:phases
- (modify-phases %standard-phases
- (delete 'configure))
- #:tests? #f))
+ (list
+ #:make-flags #~(list (string-append "PREFIX=" #$output))
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests? (invoke "./dex" "--test")))))))
(inputs
(list python))
(native-inputs
@@ -3780,8 +3783,9 @@ applications for Sway and other wlroots-based Wayland compositors.")
(home-page "https://github.com/jceb/dex")
(synopsis "Execute DesktopEntry files")
(description
- "@command{dex}, @dfn{DesktopEntry Execution}, is a program to generate
-and execute @file{.desktop} files of the Application type.")
+ "@command{dex}, @dfn{DesktopEntry Execution}, is a program to generate and
+execute @file{.desktop} files of the Application type. It is also an
+autostarter compliant with the XDG autostart specification.")
(license license:gpl3+)))
(define-public sx