diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-11-27 15:53:09 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-11-27 21:37:58 +0200 |
commit | 26a200f71c8407007c4eb8a85f685d21f551cb33 (patch) | |
tree | 87900861e588e577cd15a454ad2d44702e51d7d4 /gnu/system.scm | |
parent | 6b51f33fbfd39a6a546edaefa28b30f1d08a9442 (diff) | |
download | guix-26a200f71c8407007c4eb8a85f685d21f551cb33.tar.gz |
gnu: shadow: Merge in shadow-with-man-pages.
* gnu/packages/admin.scm (shadow)[arguments]: Add phase to install the manpages. Make sure 'remove-groups comes after installing the manpages. [properties]: Remove field. (shadow-with-man-pages): Remove variable. * gnu/system.scm (%base-packages-utils): Replace shadow-with-man-pages with shadow.
Diffstat (limited to 'gnu/system.scm')
-rw-r--r-- | gnu/system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index a94f0a9a1f..9c2e50bec5 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -846,7 +846,7 @@ of PROVENANCE-SERVICE-TYPE to its services." (define %base-packages-utils ;; Default set of utilities packages. (cons* procps psmisc which - (@ (gnu packages admin) shadow-with-man-pages) ;for 'passwd' + shadow ;for 'passwd' guile-3.0-latest |