diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-05-06 17:02:53 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-05-06 17:12:45 +0200 |
commit | 5c5bdab9295f275b6b717259d7a413b216867763 (patch) | |
tree | 6dbf0ac63b93b788935d4d6a2f2ff061922316ec /gnu | |
parent | ec6395b1aa153940ca230e0634729368e7cc56f1 (diff) | |
download | guix-5c5bdab9295f275b6b717259d7a413b216867763.tar.gz guix-5c5bdab9295f275b6b717259d7a413b216867763.zip |
gnu: gitile: Fix build.
* gnu/packages/version-control.scm (gitile)[arguments]: Replace
'bootstrap' phase.
[inputs]: Replace GNUTLS with GUILE-GNUTLS.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/version-control.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 4bdf63cc63..6774dcb046 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -1624,6 +1624,11 @@ control to Git repositories.") #: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 @@ control to Git repositories.") 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 |