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.master
parent
e932d371e5
commit
c273d81bfa
|
@ -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
|
||||
|
|
|
@ -353,7 +353,7 @@ explicitly appear in OS."
|
|||
;; Default set of packages globally visible. It should include anything
|
||||
;; required for basic administrator tasks.
|
||||
(cons* procps psmisc which less zile nano
|
||||
(@ (gnu packages admin) dmd) guix
|
||||
guix
|
||||
lsof ;for Guix's 'list-runtime-roots'
|
||||
pciutils usbutils
|
||||
util-linux inetutils isc-dhcp
|
||||
|
|
Reference in New Issue