Hi Oleg, Oleg Pykhalov <go.wig...@gmail.com> skribis:
> Here is a Guix package recipe which works on Guix 862a8861 commit: > > (define-public guile3.0-bash > (package > (inherit guile-bash) > (name "guile3.0-bash") > (inputs > `(("guile" ,guile-3.0-latest) > ,@(assoc-remove! (package-inputs guile-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 guile-bash))))) What about making it the new ‘guile-bash’ package in Guix? Thanks, Ludo’.