diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-05-08 16:15:33 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-05-08 16:30:50 +0200 |
commit | dd0804c67e99914eecc471fdb92f4220425a1cbc (patch) | |
tree | 47833a17922e16990c2365ddad59456e4c67ce02 /gnu/services/dict.scm | |
parent | 2bb5b1d400b00cb1d577ddb22ea100e1c56dbe01 (diff) | |
download | guix-dd0804c67e99914eecc471fdb92f4220425a1cbc.tar.gz |
services: Add descriptions.
* gnu/services/dbus.scm (polkit-service-type)[description]: New field. * gnu/services/dict.scm (dicod-service-type)[description]: New field. * gnu/services/dns.scm (knot-service-type)[description]: New field. * gnu/services/networking.scm (dhcpd-service-type)[description]: New field. * gnu/services/shepherd.scm (shepherd-root-service-type)[description]: New field. * gnu/services/xorg.scm (slim-service-type)[description]: New field. (screen-locker-service-type)[description]: New field. * gnu/system/pam.scm (pam-root-service-type)[description]: New field. * gnu/system/shadow.scm (account-service-type)[description]: New field.
Diffstat (limited to 'gnu/services/dict.scm')
-rw-r--r-- | gnu/services/dict.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/services/dict.scm b/gnu/services/dict.scm index 70b05e8f80..519ed3eca2 100644 --- a/gnu/services/dict.scm +++ b/gnu/services/dict.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Sou Bunnbu <iyzsong@gmail.com> -;;; Copyright © 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2016, 2017, 2018, 2020 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2017 Huang Ying <huang.ying.caritas@gmail.com> ;;; ;;; This file is part of GNU Guix. @@ -174,7 +174,12 @@ database { (const %dicod-activation)) (service-extension shepherd-root-service-type dicod-shepherd-service))) - (default-value (dicod-configuration)))) + (default-value (dicod-configuration)) + (description + "Run @command{dicod}, the dictionary server of +@uref{https://www.gnu.org/software/dico, GNU Dico}. @command{dicod} +implements the standard DICT protocol supported by clients such as +@command{dico} and GNOME Dictionary."))) (define* (dicod-service #:key (config (dicod-configuration))) "Return a service that runs the @command{dicod} daemon, an implementation |