summaryrefslogtreecommitdiff
path: root/gnu/system.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-09-17 23:28:59 +0200
committerLudovic Courtès <ludo@gnu.org>2015-10-10 22:46:15 +0200
commit23afe939a2282369900e0e7a33405cc613d7a405 (patch)
tree9a8de9ac10180ddac013651d15066a1819285c9a /gnu/system.scm
parente1c153e0ab116a174ea0ed88b76f222927048c5f (diff)
system: pam: Use 'computed-file' instead of 'gexp->derivation'.
* gnu/system/linux.scm (pam-service->configuration): Use 'computed-file' instead of 'gexp->derivation'. (pam-services->directory): Likewise. * gnu/system.scm (etc-directory): Adjust accordingly.
Diffstat (limited to 'gnu/system.scm')
-rw-r--r--gnu/system.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system.scm b/gnu/system.scm
index 92a3ca3e6e..cb0ee90e09 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -447,7 +447,7 @@ on SHELLS. /etc/shells is used by xterm, polkit, and other programs."
(sudoers-file (plain-file "sudoers" "")))
"Return a derivation that builds the static part of the /etc directory."
(mlet* %store-monad
- ((pam.d (pam-services->directory pam-services))
+ ((pam.d -> (pam-services->directory pam-services))
(login.defs (text-file "login.defs" "# Empty for now.\n"))
(shells (shells-file shells))
(emacs (emacs-site-directory))