guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/13: gnu: gitile: Fix build.


From: guix-commits
Subject: 05/13: gnu: gitile: Fix build.
Date: Sat, 6 May 2023 12:21:17 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 5c5bdab9295f275b6b717259d7a413b216867763
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sat May 6 17:02:53 2023 +0200

    gnu: gitile: Fix build.
    
    * gnu/packages/version-control.scm (gitile)[arguments]: Replace
    'bootstrap' phase.
    [inputs]: Replace GNUTLS with GUILE-GNUTLS.
---
 gnu/packages/version-control.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]