guix_mirror_bot pushed a commit to branch master
in repository guix.
commit c8ed6e6cc1e4669dc140566878b3a7098eef9ce3
Author: Cayetano Santos <[email protected]>
AuthorDate: Tue Aug 26 13:58:38 2025 +0200
gnu: slstatus: Update to 1.1.
* gnu/packages/suckless.scm (slstatus): Update to 1.1.
Change-Id: I683a948894e2b4cf9c215c3b601ac6cf65b60350
Signed-off-by: Danny Milosavljevic <[email protected]>
---
gnu/packages/suckless.scm | 66 +++++++++++++++++++++++------------------------
1 file changed, 32 insertions(+), 34 deletions(-)
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index 4170de1ca3..6d49e2c743 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -139,39 +139,37 @@ other applications, i.e., st, uzbl, urxvt and xterm.")
license:x11))))
(define-public slstatus
- ;; No release tarballs yet.
- (let ((commit "84a2f117a32f0796045941260cdc4b69852b41e0")
- (revision "0"))
- (package
- (name "slstatus")
- (version (git-version "0" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri
- (git-reference
- (url "git://git.suckless.org/slstatus.git")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "063a4fnvsjbc61alnbfdpxy0nwhh9ql9j6s9hkdv12713kv932ds"))))
- (build-system gnu-build-system)
- (arguments
- (list #:tests? #f ;no test suite
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'patch
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (substitute* "config.mk"
- (("/usr/local") #$output)
- (("/usr/X11R6") #$(this-package-input "libx11"))
- (("CC = cc")
- (string-append "CC = " #$(cc-for-target))))))
- (delete 'configure)))) ;no configure script
- (inputs (list libx11))
- (home-page "https://tools.suckless.org/slstatus/")
- (synopsis "Status monitor for window managers")
- (description "SlStatus is a suckless status monitor for window managers
+ (package
+ (name "slstatus")
+ (version "1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "git://git.suckless.org/slstatus")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1bxmhvagmlqjyi9ws8i71r0k7fd6fg8286zv2b5zkcjhkayyh41i"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:tests? #f ;no test suite
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (substitute* "config.mk"
+ (("/usr/local") #$output)
+ (("/usr/X11R6") #$(this-package-input "libx11"))
+ (("CC = cc")
+ (string-append "CC = " #$(cc-for-target))))))
+ (delete 'configure)))) ;no configure script
+ (inputs (list libx11))
+ (home-page "https://tools.suckless.org/slstatus/")
+ (synopsis "Status monitor for window managers")
+ (description "SlStatus is a suckless status monitor for window managers
that use WM_NAME or stdin to fill the status bar.
It provides the following features:
@itemize
@@ -198,7 +196,7 @@ It provides the following features:
@item Volume percentage
@item WiFi signal percentage and ESSID
@end itemize")
- (license license:isc))))
+ (license license:isc)))
(define-public blind
(package