From: Dariqq <dariqq@posteo.net>
To: 71968@debbugs.gnu.org
Cc: Dariqq <dariqq@posteo.net>
Subject: [bug#71968] [PATCH v6 2/5] gnu: fastfetch: Unbundle yyjson.
Date: Sat, 19 Oct 2024 07:56:37 +0000 [thread overview]
Message-ID: <67c7a01f7d5c1be6dba6a134dca28f416b453972.1729324600.git.dariqq@posteo.net> (raw)
In-Reply-To: <0f29d3c61209681e684687686cf650e309aa63b8.1729324600.git.dariqq@posteo.net>
* gnu/packages/admin.scm (fastftech)
[origin]: Add snippet to remove third party code.
[#:configure-flags]: Add "-DENABLE_SYSTEM_YYJSON=ON"
[inputs]: Add yyjson.
Change-Id: I8175b8f4a8d55ff3b9d5fa4cb99f1fc1ad15fd97
---
gnu/packages/admin.scm | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 2cb50ed4a8..bbea957a87 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -4289,7 +4289,10 @@ (define-public fastfetch
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "112dvfx7gvp6n20i1lkd0jbh897jf7bxjxq96bj4099j3x313y3m"))))
+ (base32 "112dvfx7gvp6n20i1lkd0jbh897jf7bxjxq96bj4099j3x313y3m"))
+ (modules '((guix build utils)))
+ (snippet '(begin
+ (delete-file-recursively "src/3rdparty")))))
(build-system cmake-build-system)
(inputs (list dbus
glib
@@ -4297,9 +4300,12 @@ (define-public fastfetch
libxcb
mesa
wayland
+ yyjson
zlib)) ;for imagemagick and an #ifdef
(native-inputs (list pkg-config))
- (arguments (list #:tests? #f)) ; no test target
+ (arguments
+ (list #:tests? #f ; no test target
+ #:configure-flags #~(list "-DENABLE_SYSTEM_YYJSON=ON")))
(home-page "https://github.com/fastfetch-cli/fastfetch")
(synopsis "Display system information in a stylized manner")
(description
--
2.46.0
next prev parent reply other threads:[~2024-10-19 7:58 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-06 7:03 [bug#71968] [PATCH 0/4] fastfetch: Unbundle yyjson and package improvements Dariqq
2024-07-06 7:29 ` [bug#71968] [PATCH 1/4] gnu: Add yyjson Dariqq
2024-07-06 7:29 ` [bug#71968] [PATCH 2/4] gnu: fastfetch: Unbundle yyjson Dariqq
2024-07-06 7:29 ` [bug#71968] [PATCH 3/4] gnu: fastfetch: Add more configure flags Dariqq
2024-07-06 7:29 ` [bug#71968] [PATCH 4/4] gnu: fastfetch: Update to 2.17.2 Dariqq
2024-07-14 7:42 ` [bug#71968] [PATCH v2 0/5] fastfetch: Unbundle yyjson and package improvements Dariqq
2024-07-14 7:42 ` [bug#71968] [PATCH v2 1/5] gnu: Add yyjson Dariqq
2024-07-14 7:42 ` [bug#71968] [PATCH v2 2/5] gnu: fastfetch: Unbundle yyjson Dariqq
2024-07-14 7:42 ` [bug#71968] [PATCH v2 3/5] gnu: fastfetch: Add more configure flags Dariqq
2024-07-14 7:42 ` [bug#71968] [PATCH v2 4/5] gnu: yyjson: Update to 0.10.0 Dariqq
2024-07-14 7:42 ` [bug#71968] [PATCH v2 5/5] gnu: fastfetch: Update to 2.18.1 Dariqq
2024-08-25 7:45 ` [bug#71968] [PATCH v3 1/5] gnu: Add yyjson Dariqq
2024-08-25 7:45 ` [bug#71968] [PATCH v3 2/5] gnu: fastfetch: Unbundle yyjson Dariqq
2024-08-25 7:45 ` [bug#71968] [PATCH v3 3/5] gnu: fastfetch: Add more configure flags Dariqq
2024-08-25 7:45 ` [bug#71968] [PATCH v3 4/5] gnu: yyjson: Update to 0.10.0 Dariqq
2024-08-25 7:45 ` [bug#71968] [PATCH v3 5/5] gnu: fastfetch: Update to 2.21.3 Dariqq
2024-08-27 15:18 ` [bug#71968] [PATCH v4 1/5] gnu: Add yyjson Dariqq
2024-08-27 15:18 ` [bug#71968] [PATCH v4 2/5] gnu: fastfetch: Unbundle yyjson Dariqq
2024-08-27 15:18 ` [bug#71968] [PATCH v4 3/5] gnu: fastfetch: Add more configure flags Dariqq
2024-08-27 15:18 ` [bug#71968] [PATCH v4 4/5] gnu: yyjson: Update to 0.10.0 Dariqq
2024-08-27 15:18 ` [bug#71968] [PATCH v4 5/5] gnu: fastfetch: Update to 2.22.0 Dariqq
2024-09-18 15:27 ` [bug#71968] [PATCH v5 1/5] gnu: Add yyjson Dariqq
2024-09-18 15:27 ` [bug#71968] [PATCH v5 2/5] gnu: fastfetch: Unbundle yyjson Dariqq
2024-09-18 15:27 ` [bug#71968] [PATCH v5 3/5] gnu: fastfetch: Add more configure flags Dariqq
2024-09-18 15:27 ` [bug#71968] [PATCH v5 4/5] gnu: yyjson: Update to 0.10.0 Dariqq
2024-09-18 15:27 ` [bug#71968] [PATCH v5 5/5] gnu: fastfetch: Update to 2.24.0 Dariqq
2024-10-19 7:56 ` [bug#71968] [PATCH v6 1/5] gnu: Add yyjson Dariqq
2024-10-19 7:56 ` Dariqq [this message]
2024-10-19 7:56 ` [bug#71968] [PATCH v6 3/5] gnu: fastfetch: Add more configure flags Dariqq
2024-10-19 7:56 ` [bug#71968] [PATCH v6 4/5] gnu: yyjson: Update to 0.10.0 Dariqq
2024-10-19 7:56 ` [bug#71968] [PATCH v6 5/5] gnu: fastfetch: Update to 2.27.1 Dariqq
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=67c7a01f7d5c1be6dba6a134dca28f416b453972.1729324600.git.dariqq@posteo.net \
--to=dariqq@posteo.net \
--cc=71968@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).