me
/
guix
Archived
1
0
Fork 0

gnu: lemonbar: Update to 1.4.

[1. text/patch]
From dedefb5d5f0389d1e6fb190c9d47a6f8ca398791 Mon Sep 17 00:00:00 2001
From: Jai Vetrivelan <jaivetrivelan@gmail.com>
Date: Sat, 5 Mar 2022 11:17:57 +0530
Subject: [PATCH] gnu: lemonbar: Update to 1.4.

* gnu/packages/wm.scm (lemonbar): Update to 1.4.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Jai Vetrivelan 2022-03-05 11:35:43 +05:30 committed by Nicolas Goaziou
parent fcfa0fcb17
commit 2556dd4052
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 30 additions and 32 deletions

View File

@ -2247,41 +2247,39 @@ PNG files.")
(license license:gpl3+)))
(define-public lemonbar
(let ((commit "35183ab81d2128dbb7b6d8e119cc57846bcefdb4")
(revision "1"))
(package
(name "lemonbar")
(version (git-version "1.3" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/LemonBoy/bar")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1wwqbph392iwz8skaqxb0xpklb1l6yganqz80g4x1fhrnz7idmlh"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; no test suite
#:make-flags
(list ,(string-append "CC=" (cc-for-target))
(string-append "PREFIX=" %output))
#:phases
(modify-phases %standard-phases
(delete 'configure))))
(inputs
(list libxcb))
(native-inputs
(list perl))
(home-page "https://github.com/LemonBoy/bar")
(synopsis "Featherweight status bar")
(description
"@code{lemonbar} (formerly known as @code{bar}) is a lightweight
(package
(name "lemonbar")
(version "1.4")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/LemonBoy/bar")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0sm1lxxf0y2n87nvc8mz6i6mzb32f4qab80ppb28ibrwfir6jsln"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; no test suite
#:make-flags
(list ,(string-append "CC=" (cc-for-target))
(string-append "PREFIX=" %output))
#:phases
(modify-phases %standard-phases
(delete 'configure))))
(inputs
(list libxcb))
(native-inputs
(list perl))
(home-page "https://github.com/LemonBoy/bar")
(synopsis "Featherweight status bar")
(description
"@code{lemonbar} (formerly known as @code{bar}) is a lightweight
bar entirely based on XCB. Provides full UTF-8 support, basic
formatting, RandR and Xinerama support and EWMH compliance without
wasting your precious memory.")
(license license:x11))))
(license license:x11)))
(define-public lemonbar-xft
;; Upstream v2.0 tag is several years behind HEAD