diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-10-29 23:26:37 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-11-01 12:23:45 +0100 |
commit | 5afa23e1805e68a7cd9adb2145094dcd29bf67d6 (patch) | |
tree | 08b1794d59b52efa875cb4795f67f7bc0ec05715 /gnu/services/desktop.scm | |
parent | ed45fa64ba4f89c20042c3c08ba445c3eeb0ada9 (diff) | |
download | gnu-guix-5afa23e1805e68a7cd9adb2145094dcd29bf67d6.tar gnu-guix-5afa23e1805e68a7cd9adb2145094dcd29bf67d6.tar.gz |
services: colord: Deprecate 'colord-service' procedure.
* gnu/services/desktop.scm (colord-service-type)[default-value]: New field.
(colord-service): Define with 'define-deprecated'.
(%desktop-services): Use 'colord-service-type' instead of 'colord-service'.
* doc/guix.texi (Desktop Services): Adjust accordingly.
Diffstat (limited to 'gnu/services/desktop.scm')
-rw-r--r-- | gnu/services/desktop.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm index 449b606a31..0152e86e8a 100644 --- a/gnu/services/desktop.scm +++ b/gnu/services/desktop.scm @@ -514,12 +514,14 @@ Users need to be in the @code{lp} group to access the D-Bus service. ;; It provides polkit "actions". (service-extension polkit-service-type list))) + (default-value colord) (description "Run @command{colord}, a system service with a D-Bus interface to manage the color profiles of input and output devices such as screens and scanners."))) -(define* (colord-service #:key (colord colord)) +(define-deprecated (colord-service #:key (colord colord)) + colord-service-type "Return a service that runs @command{colord}, a system service with a D-Bus interface to manage the color profiles of input and output devices such as screens and scanners. It is notably used by the GNOME Color Manager graphical @@ -1094,7 +1096,7 @@ dispatches events from it."))) (service upower-service-type) (accountsservice-service) (service cups-pk-helper-service-type) - (colord-service) + (service colord-service-type) (geoclue-service) (service polkit-service-type) (elogind-service) |