diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2021-01-29 20:59:48 -0500 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2021-01-29 20:59:48 -0500 |
commit | 93f5905a8bccaa4820cc30b8fe93a21244ba915b (patch) | |
tree | 52b2f4026dadab6d80ddc10d30cc79327ac17432 | |
parent | f158be1caad9b81ebc53fa2c45804d216ed1f81e (diff) |
guix: Build a patched version of Guile.
-rw-r--r-- | guix.scm | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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 |