diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-03-07 09:58:40 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-03-07 11:22:41 +0100 |
commit | 366ddc1ac549efee9acd1fddd30c9baee89ec18a (patch) | |
tree | 7183bf91b902d6cc10f2a52ad9ea0ce2801b7218 /gnu/services/dict.scm | |
parent | 2468ca04882f27ac28a427e2445a20157b9b2802 (diff) | |
download | patches-366ddc1ac549efee9acd1fddd30c9baee89ec18a.tar patches-366ddc1ac549efee9acd1fddd30c9baee89ec18a.tar.gz |
services: dicod: Depend on 'user-processes'.
* gnu/services/dict.scm (dicod-shepherd-service): Add 'requirement'.
Diffstat (limited to 'gnu/services/dict.scm')
-rw-r--r-- | gnu/services/dict.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/services/dict.scm b/gnu/services/dict.scm index c8403c0135..70b05e8f80 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 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2017 Huang Ying <huang.ying.caritas@gmail.com> ;;; ;;; This file is part of GNU Guix. @@ -150,6 +150,7 @@ database { (gnu system file-systems))) (list (shepherd-service (provision '(dicod)) + (requirement '(user-processes)) (documentation "Run the dicod daemon.") (modules '((gnu build shepherd) (gnu system file-systems))) |