diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-03-11 14:37:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-03-11 23:12:26 +0100 |
commit | 082c648d281dce035f8d72e64cfd369a0f775c45 (patch) | |
tree | 62f7c43850efb44a365192ec62b2971be7029d17 /gnu/services | |
parent | 984a61624c458e558415414dec027232dad4502d (diff) | |
download | patches-082c648d281dce035f8d72e64cfd369a0f775c45.tar patches-082c648d281dce035f8d72e64cfd369a0f775c45.tar.gz |
services: mate-desktop: Deprecate the 'mate-desktop-service' procedure.
* gnu/services/desktop.scm (mate-desktop-service): Deprecate.
* doc/guix.texi (Desktop Services): Document 'mate-desktop-service-type'
and 'mate-desktop-configuration'. Fix spelling of "Enlightenment".
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/desktop.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm index d52ea2dc05..0dee57e3bc 100644 --- a/gnu/services/desktop.scm +++ b/gnu/services/desktop.scm @@ -909,7 +909,10 @@ and extends polkit with the actions from @code{gnome-settings-daemon}." (default-value (mate-desktop-configuration)) (description "Run the MATE desktop environment."))) -(define* (mate-desktop-service #:key (config (mate-desktop-configuration))) +(define-deprecated (mate-desktop-service #:key + (config + (mate-desktop-configuration))) + mate-desktop-service-type "Return a service that adds the @code{mate} package to the system profile, and extends polkit with the actions from @code{mate-settings-daemon}." (service mate-desktop-service-type config)) |