diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2021-05-04 13:48:20 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2021-05-04 13:48:20 -0400 |
commit | cd4b951bccdaed213934526a730df1533498ac05 (patch) | |
tree | 35e4ec21e436977e7a143a128c667aca35389436 | |
parent | 82bcd2f1ea1255b047f33a866c3323a512545506 (diff) |
guix: Use Guile 3.0.6.
-rw-r--r-- | guix.scm | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -23,12 +23,17 @@ (define target-guile (package - (inherit guile-3.0-latest) - (source (origin - (inherit (package-source guile-3.0-latest)) - (patches (list "0001-goops-Preserve-all-slot-options-in-redefinable-class.patch")))) - (arguments - `(#:tests? #f ,@(package-arguments guile-3.0-latest))))) + (inherit guile-3.0-latest) + (version "3.0.6") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnu/guile/guile-" + version ".tar.xz")) + (sha256 + (base32 + "0a2xhjy6y5p15qvc59pdnzi20fm1jwqa772pwxb16wkx0z187gg2")))) + (arguments + `(#:tests? #f ,@(package-arguments guile-3.0-latest))))) (define guile3.0-opengl (package |