summaryrefslogtreecommitdiff
path: root/gnu/services.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-05-10 18:13:52 +0200
committerLudovic Courtès <ludo@gnu.org>2019-05-10 23:29:18 +0200
commitdc5729a8e0e2ef5cf5855aa5f1d7ecba319c2e5b (patch)
treede7dc09de1a6fbb84621fe29d56dd6db03b2fcda /gnu/services.scm
parent76ae10a1f483a23ac2f88264d49011eb06c9da27 (diff)
downloadguix-patches-dc5729a8e0e2ef5cf5855aa5f1d7ecba319c2e5b.tar
guix-patches-dc5729a8e0e2ef5cf5855aa5f1d7ecba319c2e5b.tar.gz
services: 'gc-root-service-type' now has a default value.
* gnu/services.scm (gc-root-service-type)[default-value]: New field.
Diffstat (limited to 'gnu/services.scm')
-rw-r--r--gnu/services.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/services.scm b/gnu/services.scm
index f151bbaa9d..7de78105ff 100644
--- a/gnu/services.scm
+++ b/gnu/services.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com>
;;;
;;; This file is part of GNU Guix.
@@ -649,7 +649,8 @@ as Wifi cards.")))
(extend append)
(description
"Register garbage-collector roots---i.e., store items that
-will not be reclaimed by the garbage collector.")))
+will not be reclaimed by the garbage collector.")
+ (default-value '())))
;;;