diff options
author | Jussi Timperi <jussi.timperi@iki.fi> | 2025-07-23 01:58:03 +0300 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-23 17:04:29 +0200 |
commit | eefd2b2ee0984314a7f4d74a8e1b9dc92887d501 (patch) | |
tree | 8c967aa944194647bcdc015607009e171eca1b03 | |
parent | e41a317ad72db614265274ca8fbeea0133b6117a (diff) |
gnu: i3lock-color: Update to 2.13.c.5.
* gnu/packages/wm.scm (i3lock-color): Update to 2.13.c.5.
[arguments]: Use gexps.
<#:configure-flags>: Add --with-zsh-completion-dir to install completions.
[native-inputs]: Add bash-completion.
Change-Id: I8fe21aa6956d9fef300897c03f8be9a8ab988857
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/wm.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index c4170b6b13..d982546a9b 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -1002,7 +1002,7 @@ prompt.") (define-public i3lock-color (package (name "i3lock-color") - (version "2.13.c.4") + (version "2.13.c.5") (source (origin (method git-fetch) @@ -1011,10 +1011,14 @@ prompt.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1lnyh8spbf1ar4xan5v7q8i2i51aq1i60kzbfkn9w3wa0jzf9f3d")))) + (base32 "1ya7h4ql5znjapfw67b8mkmflvcyywial494pgmnczv2aj1dxqky")))) (build-system gnu-build-system) (arguments - `(#:tests? #f)) ; no tests included + (list + #:tests? #f ;no tests included + #:configure-flags + #~(list (string-append "--with-zsh-completion-dir=" + #$output "/share/zsh/site-functions")))) (inputs (list cairo libev @@ -1026,7 +1030,7 @@ prompt.") xcb-util-image xcb-util-xrm)) (native-inputs - (list autoconf automake pkg-config)) + (list autoconf automake bash-completion pkg-config)) (home-page "https://github.com/Raymo111/i3lock-color") (synopsis "Screen locker with color configuration support") (description |