mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 09:37:03 +01:00
gnu: gitile: Fix build.
* gnu/packages/version-control.scm (gitile)[arguments]: Replace 'bootstrap' phase. [inputs]: Replace GNUTLS with GUILE-GNUTLS.
This commit is contained in:
parent
ec6395b1aa
commit
5c5bdab929
1 changed files with 6 additions and 1 deletions
|
@ -1624,6 +1624,11 @@ (define-public gitile
|
|||
#:make-flags (list "GUILE_AUTO_COMPILE=0")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'bootstrap
|
||||
(lambda _
|
||||
;; The 'bootstrap' script lacks a shebang, leading to "Exec
|
||||
;; format error" with glibc 2.35.
|
||||
(invoke "autoreconf" "-vfi")))
|
||||
(add-after 'install-bin 'wrap-program
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(use-modules (guix build guile-build-system))
|
||||
|
@ -1663,7 +1668,7 @@ (define-public gitile
|
|||
guile-gcrypt
|
||||
guile-git
|
||||
guile-syntax-highlight-for-gitile
|
||||
gnutls))
|
||||
guile-gnutls))
|
||||
(home-page "https://git.lepiller.eu/gitile")
|
||||
(synopsis "Simple Git forge written in Guile")
|
||||
(description "Gitile is a Git forge written in Guile that lets you
|
||||
|
|
Loading…
Reference in a new issue