diff options
author | David Thompson <dthompson2@worcester.edu> | 2024-07-18 16:43:32 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2024-07-19 12:41:20 -0400 |
commit | 1e918509ab4660391624069b9e610cfbefec00c5 (patch) | |
tree | 18573f02b6a3ef578dda89f6e5793c1ff052763e /gnu | |
parent | 9724e61cda80e4c59a2eb419a453887ecc551b9a (diff) | |
download | guix-1e918509ab4660391624069b9e610cfbefec00c5.tar.gz guix-1e918509ab4660391624069b9e610cfbefec00c5.zip |
gnu: shepherd 0.9: Switch from guile-3.0-latest to guile-3.0.
* gnu/packages/admin.scm (shepherd-0.9)[native-inputs]: Use guile-3.0.
[inputs]: Ditto.
Change-Id: I7f7efabc43e11e413300c6aa4c22919070d22389
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/admin.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index f4d1797d5b..113b8e2481 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -385,11 +385,9 @@ interface and is based on GNU Guile.") "/lib/guile/3.0/site-ccache")))))) #~%standard-phases))) - ;; Note: Use 'guile-3.0-latest' to address the continuation-related memory - ;; leak reported at <https://issues.guix.gnu.org/58631>. - (native-inputs (list pkg-config guile-3.0-latest + (native-inputs (list pkg-config guile-3.0 guile-fibers-1.1)) ;for cross-compilation - (inputs (list guile-3.0-latest guile-fibers-1.1)))) + (inputs (list guile-3.0 guile-fibers-1.1)))) (define-public shepherd-0.10 (package |