summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2021-01-29 20:59:48 -0500
committerDavid Thompson <dthompson@vistahigherlearning.com>2021-01-29 20:59:48 -0500
commit93f5905a8bccaa4820cc30b8fe93a21244ba915b (patch)
tree52b2f4026dadab6d80ddc10d30cc79327ac17432
parentf158be1caad9b81ebc53fa2c45804d216ed1f81e (diff)
guix: Build a patched version of Guile.
-rw-r--r--guix.scm9
1 files changed, 8 insertions, 1 deletions
diff --git a/guix.scm b/guix.scm
index b24616a..4d11ee0 100644
--- a/guix.scm
+++ b/guix.scm
@@ -55,7 +55,14 @@
(gnu packages texinfo)
(gnu packages xiph))
-(define target-guile guile-3.0)
+(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)))))
(define guile3.0-opengl
(package