This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 5138923454 gnu: fastfetch: Update to 2.50.1.
5138923454 is described below
commit 5138923454910e3e946f4aaec8c51571b6263a8a
Author: Ashish SHUKLA <[email protected]>
AuthorDate: Thu Aug 14 21:31:07 2025 +0200
gnu: fastfetch: Update to 2.50.1.
* gnu/packages/admin.scm (fastfetch): Update to 2.50.1.
[arguments]<#:phases>: Add phase 'fix-yyjson.
Change-Id: Idd2ceacc589080fe4058ecf225e6d2ec10394960
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/admin.scm | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 237f0e02a8..7ee2048272 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -4642,7 +4642,7 @@ information tool.")
(define-public fastfetch
(package
(name "fastfetch")
- (version "2.49.0")
+ (version "2.50.1")
(source
(origin
(method git-fetch)
@@ -4651,7 +4651,7 @@ information tool.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1mka26ga6jmrimkl93xf97pg8y1k3b41vsb3ds61wi6n257daprk"))
+ (base32 "13640kljz19lm73ndqzzf2qljpw1d096l54djp9yqzspqjq2x0h5"))
(modules '((guix build utils)))
(snippet '(begin
(delete-file-recursively "src/3rdparty")))))
@@ -4669,7 +4669,15 @@ information tool.")
"/share/hwdata/pci.ids")
(string-append "-DCUSTOM_AMDGPU_IDS_PATH="
#$(this-package-input "libdrm")
- "/share/libdrm/amdgpu.ids"))))
+ "/share/libdrm/amdgpu.ids"))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'fix-yyjson
+ (lambda _
+ ;; workaround for
https://github.com/fastfetch-cli/fastfetch/pull/1904
+ (substitute* "src/util/FFstrbuf.h"
+ (("\"3rdparty/yyjson/yyjson.h\"")
+ "<yyjson.h>")))))))
(inputs (list dbus
glib
hwdata