gnu: guix: Add "guile3.0-guix" variant.

* gnu/packages/package-management.scm (guile3.0-guix): New variable.
This commit is contained in:
Ludovic Courtès 2020-01-17 21:59:03 +01:00
parent 04d29de114
commit da76518061
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

View File

@ -397,6 +397,21 @@ the Nix package manager.")
(define-public guile2.0-guix
(deprecated-package "guile2.0-guix" guix))
(define-public guile3.0-guix
(package
(inherit guix)
(name "guile3.0-guix")
(inputs
`(("guile" ,guile-3.0)
,@(alist-delete "guile" (package-inputs guix))))
(propagated-inputs
`(("gnutls" ,guile3.0-gnutls)
("guile-gcrypt" ,guile3.0-gcrypt)
("guile-json" ,guile3.0-json)
("guile-sqlite3" ,guile3.0-sqlite3)
("guile-ssh" ,guile3.0-ssh)
("guile-git" ,guile3.0-git)))))
(define-public guix-minimal
;; A version of Guix which is built with the minimal set of dependencies, as
;; outlined in the README "Requirements" section. Intended as a CI job, so