[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: hikari: Improve package.
From: |
guix-commits |
Subject: |
branch master updated: gnu: hikari: Improve package. |
Date: |
Fri, 26 Mar 2021 09:48:50 -0400 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 636caba gnu: hikari: Improve package.
636caba is described below
commit 636caba168bf06a17c10ca583e374793e7c7b1cb
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Fri Mar 26 14:47:55 2021 +0100
gnu: hikari: Improve package.
* gnu/packages/wm.scm (hikari)[inputs]: Sort alphabetically.
[synopsis]: Shorten a bit.
[description]: Use full sentences.
---
gnu/packages/wm.scm | 29 ++++++++++++++---------------
1 file changed, 14 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index a637bce..6105a98 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -2408,28 +2408,26 @@ read and write, and compatible with JSON.")
(source
(origin
(method url-fetch)
- (uri (string-append
- "https://hikari.acmelabs.space/releases/hikari-";
- version ".tar.gz"))
+ (uri (string-append "https://hikari.acmelabs.space/releases/";
+ "hikari-" version ".tar.gz"))
(sha256
- (base32
- "1qsd1qb4bn24jh5658gxmfg6hk9p7g235gsbvnjrbfdjqsv8r6yz"))))
+ (base32 "1qsd1qb4bn24jh5658gxmfg6hk9p7g235gsbvnjrbfdjqsv8r6yz"))))
(build-system gnu-build-system)
(native-inputs
`(("bmake" ,bmake)
("pkg-config" ,pkg-config)
("wayland-protocols" ,wayland-protocols)))
(inputs
- `(("wayland" ,wayland)
- ("wlroots" ,wlroots)
+ `(("cairo" ,cairo)
("libinput" ,libinput)
- ("cairo" ,cairo)
- ("pango" ,pango)
- ("libxkbcommon" ,libxkbcommon)
("libucl" ,libucl)
- ("pam" ,linux-pam)))
+ ("libxkbcommon" ,libxkbcommon)
+ ("pam" ,linux-pam)
+ ("pango" ,pango)
+ ("wayland" ,wayland)
+ ("wlroots" ,wlroots)))
(arguments
- `(#:tests? #f ; no tests
+ `(#:tests? #f ; no tests
#:make-flags
(list
(string-append "PREFIX=" (assoc-ref %outputs "out"))
@@ -2448,7 +2446,8 @@ read and write, and compatible with JSON.")
(lambda* (#:key inputs outputs make-flags #:allow-other-keys)
(apply invoke "bmake" "install" make-flags))))))
(home-page "https://hikari.acmelabs.space/";)
- (synopsis "Stacking Wayland compositor with additional tiling
capabilities")
- (description "Stacking Wayland compositor with additional tiling
-capabilities, it is heavily inspired by the Calm Window manager(cwm)")
+ (synopsis "Stacking Wayland compositor with tiling capabilities")
+ (description
+ "Hikari is a stacking Wayland compositor with additional tiling
+capabilities. It is heavily inspired by the Calm Window manager(cwm).")
(license license:bsd-2)))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: hikari: Improve package.,
guix-commits <=