From 15ca11ee882af059ab2a0e573ba3436044debb59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 5 Mar 2026 16:08:50 +0100 Subject: [PATCH] gnu: guile-debbugs: Build from a version-control checkout. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/guile-xyz.scm (guile-debbugs)[source]: Switch to ‘git-fetch’. [native-inputs]: Add ‘autoconf’, ‘automake’, and ‘texinfo’. Change-Id: I2dc7199c0d9149cdafd5dd6b8d2963719c6b6ccb Signed-off-by: Ludovic Courtès --- gnu/packages/guile-xyz.scm | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 4659098d08..cbe6e05edf 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -2194,17 +2194,19 @@ using S-expressions.") (name "guile-debbugs") (version "0.0.3") (source (origin - (method url-fetch) - (uri (string-append "mirror://gnu/guile-debbugs/guile-debbugs-" - version ".tar.gz")) - (sha256 - (base32 - "1cc63nw3xdfjrfk8c58r6d5lidmfq5cpqcy32yd5xp81yccprvn9")))) + (method git-fetch) + (uri (git-reference + (url + "https://https.git.savannah.gnu.org/git/guile-debbugs.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 (base32 + "0ipv3vywx02yhyssq5rp1bifg1qkydgh6kr16vfspxs601q8bbm2")))) (build-system gnu-build-system) (propagated-inputs (list guile-email)) (native-inputs - (list guile-3.0 pkg-config)) + (list autoconf automake texinfo guile-3.0 pkg-config)) (home-page "https://savannah.gnu.org/projects/guile-debbugs/") (synopsis "Guile interface to the Debbugs bug tracking service") (description