From 3f33cb031475c1f21fad357249e49a0cfe4b78eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 8 Jan 2025 17:06:35 +0100 Subject: [PATCH] =?UTF-8?q?system:=20Add=20zstd=20to=20=E2=80=98%base-pack?= =?UTF-8?q?ages=E2=80=99.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is particularly useful now that log files are going to be zstd-compressed by default, among other uses of zstd. * gnu/system.scm (%base-packages-utils): Add ‘zstd’. Change-Id: I766791fea3bc3fca2519a7cd6ac472550be386dd --- gnu/system.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/system.scm b/gnu/system.scm index 252a26cac3..8df871f255 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013-2022, 2024 Ludovic Courtès +;;; Copyright © 2013-2022, 2024-2025 Ludovic Courtès ;;; Copyright © 2015 Mark H Weaver ;;; Copyright © 2015, 2016 Alex Kost ;;; Copyright © 2016 Chris Marusich @@ -944,7 +944,8 @@ (define %base-packages-utils ;; The packages below are also in %FINAL-INPUTS, so take them from ;; there to avoid duplication. (list bash coreutils findutils grep sed - diffutils patch gawk tar gzip bzip2 xz lzip))) + diffutils patch gawk tar + gzip bzip2 lzip xz zstd))) (define %base-packages-linux ;; Default set of linux specific packages.