diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-01-27 15:36:27 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-01-27 15:48:35 +0100 |
commit | c273d81bfa560076414e7e221505f25c91232860 (patch) | |
tree | 0a7e55b58bfaac3e14e6354a5f589fc6463f08cc /gnu/services | |
parent | e932d371e5ab4b549008e3027c27a2d8259a03d4 (diff) | |
download | guix-c273d81bfa560076414e7e221505f25c91232860.tar guix-c273d81bfa560076414e7e221505f25c91232860.tar.gz |
services: dmd: Provide dmd via 'profile-service-type'.
* gnu/services/dmd.scm (dmd-root-service-type): Extend
PROFILE-SERVICE-TYPE.
* gnu/system.scm (%base-packages): Remove dmd.
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/dmd.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/services/dmd.scm b/gnu/services/dmd.scm index 545087acc9..fb3d3326f8 100644 --- a/gnu/services/dmd.scm +++ b/gnu/services/dmd.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -88,7 +88,9 @@ ;; list of services provided by the extensions. (compose concatenate) (extend append) - (extensions (list (service-extension boot-service-type dmd-boot-gexp))))) + (extensions (list (service-extension boot-service-type dmd-boot-gexp) + (service-extension profile-service-type + (const (list dmd))))))) (define %dmd-root-service ;; The root dmd service, aka. PID 1. Its parameter is a list of |