mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
gnu: guile-bash: Build with Guile 3.0.
* gnu/packages/guile-xyz.scm (guile2.0-bash): New variable. (guile-bash): Build with Guile 3.0.
This commit is contained in:
parent
696cf48b98
commit
08814ccc54
1 changed files with 21 additions and 1 deletions
|
@ -37,6 +37,7 @@
|
|||
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
||||
;;; Copyright © 2021 Leo Le Bouter <lle-bout@zaclys.net>
|
||||
;;; Copyright © 2021 Zelphir Kaltstahl <zelphirkaltstahl@posteo.de>
|
||||
;;; Copyright © 2021 Oleg Pykhalov <go.wigust@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -362,7 +363,7 @@ (define-public guile-aspell
|
|||
dictionary and suggesting spelling corrections.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public guile-bash
|
||||
(define-public guile2.0-bash
|
||||
;; This project is currently retired. It was initially announced here:
|
||||
;; <https://lists.gnu.org/archive/html/guile-user/2015-02/msg00003.html>.
|
||||
(let ((commit "1eabc563ca5692b3e08d84f1f0e6fd2283284469")
|
||||
|
@ -431,6 +432,25 @@ (define-public guile-bash
|
|||
and then run @command{scm example.scm}.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public guile-bash
|
||||
(package
|
||||
(inherit guile2.0-bash)
|
||||
(name "guile-bash")
|
||||
(inputs
|
||||
`(("guile" ,guile-3.0-latest)
|
||||
,@(assoc-remove! (package-inputs guile2.0-bash) "guile")))
|
||||
(arguments
|
||||
`(#:tests? #f
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-after 'install 'install-guile
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(copy-recursively
|
||||
(string-append (assoc-ref outputs "out")
|
||||
(assoc-ref inputs "guile") "/share")
|
||||
(string-append (assoc-ref outputs "out") "/share"))
|
||||
#t)))
|
||||
,@(package-arguments guile2.0-bash)))))
|
||||
|
||||
(define-public guile-8sync
|
||||
(package
|
||||
(name "guile-8sync")
|
||||
|
|
Loading…
Reference in a new issue