summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2021-05-04 13:48:20 -0400
committerDavid Thompson <dthompson@vistahigherlearning.com>2021-05-04 13:48:20 -0400
commitcd4b951bccdaed213934526a730df1533498ac05 (patch)
tree35e4ec21e436977e7a143a128c667aca35389436
parent82bcd2f1ea1255b047f33a866c3323a512545506 (diff)
guix: Use Guile 3.0.6.
-rw-r--r--guix.scm17
1 files changed, 11 insertions, 6 deletions
diff --git a/guix.scm b/guix.scm
index e90538e..b76155d 100644
--- a/guix.scm
+++ b/guix.scm
@@ -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