diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-06-30 11:13:53 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-06-30 11:27:30 +0200 |
commit | 87941d1df473511f0f75737e81a51a106132c9de (patch) | |
tree | cf4c9da4e0af0ffea5bcd363e3f397f5d26404e1 /gnu/system.scm | |
parent | 588b22575d1ad7eb41dec17e01e03aa1c56f56db (diff) | |
download | guix-87941d1df473511f0f75737e81a51a106132c9de.tar guix-87941d1df473511f0f75737e81a51a106132c9de.tar.gz |
system: Use "@" to refer to the 'shadow' package.
Reported by Mark H Weaver
at <https://lists.gnu.org/archive/html/guix-devel/2017-06/msg00349.html>.
* gnu/system.scm (%base-packages): Use '@' for shadow. This fixes an
error on Guile 2.0 where 'shadow' alone resolves to the (gnu system
shadow) module.
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 0aec872e6c..ee1e10f82d 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -490,7 +490,7 @@ explicitly appear in OS." lsof ;for Guix's 'list-runtime-roots' pciutils usbutils util-linux inetutils isc-dhcp - shadow ;for 'passwd' + (@ (gnu packages admin) shadow) ;for 'passwd' ;; wireless-tools is deprecated in favor of iw, but it's still what ;; many people are familiar with, so keep it around. |