diff options
author | Christopher Baines <mail@cbaines.net> | 2020-04-17 18:16:19 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-04-18 15:49:44 +0100 |
commit | cef392f3936922b7b0b74bd59be67e660c10db67 (patch) | |
tree | 5adf8a89107bf7e6d867d35802d82a2e7b167c9e /gnu | |
parent | 45fd28f76405df30070f161fe79365363d7103b3 (diff) | |
download | guix-cef392f3936922b7b0b74bd59be67e660c10db67.tar.gz |
guix: self: Use guile with libgc-7.
Rather than libgc version 8. This should avoid crashes that can occur, particularly when loading data in to the Guix Data Service [1]. 1: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=40525 * gnu/packages/guile.scm (guile-3.0/libgc-7): New variable. * guix/self.scm (specification->package): Use guile-3.0/libgc-7 for guile.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/guile.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 8ccbc22f26..a262553ba1 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -309,6 +309,17 @@ without requiring the source code to be rewritten.") (define-public guile-next guile-3.0) +(define-public guile-3.0/libgc-7 + ;; Using libgc-7 avoid crashes that can occur, particularly when loading + ;; data in to the Guix Data Service: + ;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=40525 + (hidden-package + (package + (inherit guile-3.0) + (propagated-inputs + `(("bdw-gc" ,libgc-7) + ,@(srfi-1:alist-delete "bdw-gc" (package-propagated-inputs guile-3.0))))))) + (define-public guile-3.0/fixed ;; A package of Guile that's rarely changed. It is the one used in the ;; `base' module, and thus changing it entails a full rebuild. |