diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-30 02:00:03 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-30 02:00:04 +0100 |
commit | 932a60812a620c9dcc5b0e327da27edd20732911 (patch) | |
tree | 749be2ab25a7b38efa2d0252b065555cf08f544a /gnu/packages/xdisorg.scm | |
parent | bb453af580ef92b843d02ef3f2b0c6d9ecfc132a (diff) |
gnu: jgmenu: Update to 4.4.1.
* gnu/packages/xdisorg.scm (jgmenu): Update to 4.4.1.
[arguments]: Don't explicitly return #t from phases.
Diffstat (limited to 'gnu/packages/xdisorg.scm')
-rw-r--r-- | gnu/packages/xdisorg.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 1a868146a0..0bd0317527 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -2546,7 +2546,7 @@ The cutbuffer and clipboard selection are always synchronized.") (define-public jgmenu (package (name "jgmenu") - (version "4.4.0") + (version "4.4.1") (source (origin (method git-fetch) @@ -2555,7 +2555,7 @@ The cutbuffer and clipboard selection are always synchronized.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "08dyygclayyipa0p2qsxqa3fsfyflkrkhpi25dkc3ybkicvynk24")))) + (base32 "1a9irlrpa3mi3101cn9hi1ch5k1v4p0h83ni5j63qmlc5g7pcbsh")))) (build-system gnu-build-system) (native-inputs (list cppcheck perl pkg-config)) @@ -2575,8 +2575,7 @@ The cutbuffer and clipboard selection are always synchronized.") (lambda* (#:key outputs #:allow-other-keys) (setenv "CC" ,(cc-for-target)) (invoke "./configure" - (string-append "--prefix=" (assoc-ref outputs "out"))) - #t))))) + (string-append "--prefix=" (assoc-ref outputs "out")))))))) (synopsis "Simple X11 menu") (description "This is a simple menu for X11 designed for scripting and tweaking. It |