diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-11-28 14:10:14 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-12-05 11:21:18 -0500 |
commit | bb689fda925430d99e911a7613085fc24300dca3 (patch) | |
tree | 31bacdeb6e7cc23084fd70b86136adbdd1d2b1f1 /gnu | |
parent | ed845e8250674f8ec545c19cebd298847fec81c2 (diff) | |
download | guix-bb689fda925430d99e911a7613085fc24300dca3.tar.gz |
system: Add e2fsprogs to %base-packages-utils.
Rationale: Even when not using an ext file system, the utilities provided by e2fsprogs are useful, for example to set the copy-on-write attribute of a Btrfs file system. * gnu/system.scm (%base-packages-utils): Add e2fsprogs.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/system.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index 1c119c31b6..62c8e0c2b6 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -856,6 +856,8 @@ of PROVENANCE-SERVICE-TYPE to its services." (cons* procps psmisc which (@ (gnu packages admin) shadow-with-man-pages) ;for 'passwd' + e2fsprogs ;for lsattr, chattr, etc. + guile-3.0-latest ;; The packages below are also in %FINAL-INPUTS, so take them from |