diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-09-19 12:12:29 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-10-10 22:46:15 +0200 |
commit | e79467f63a06811ba5dd8c8b0cc79553c5dd4e3a (patch) | |
tree | 03e0c0895efdf63efc6aea353e08f25bb09ca80d /gnu/system.scm | |
parent | f3f427c2e930e2fb1a72ff8bb9b4a870edfbf007 (diff) | |
download | gnu-guix-e79467f63a06811ba5dd8c8b0cc79553c5dd4e3a.tar gnu-guix-e79467f63a06811ba5dd8c8b0cc79553c5dd4e3a.tar.gz |
system: Account skeleton API is non-monadic.
* gnu/system/shadow.scm (default-skeletons): Use the non-monadic
procedures and turn into a regular procedure.
(skeleton-directory): Likewise.
* gnu/system.scm (etc-directory): Adjust accordingly.
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 cb0ee90e09..5eaafed6ae 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -527,7 +527,7 @@ then # as those in ~/.guix-profile and /run/current-system/profile. source /run/current-system/profile/etc/profile.d/bash_completion.sh fi\n")) - (skel (skeleton-directory skeletons))) + (skel -> (skeleton-directory skeletons))) (file-union "etc" `(("services" ,#~(string-append #$net-base "/etc/services")) ("protocols" ,#~(string-append #$net-base "/etc/protocols")) |