diff options
-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 |