guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 15ca11ee882af059ab2a0e573ba3436044debb59
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Mar 5 16:08:50 2026 +0100
gnu: guile-debbugs: Build from a version-control checkout.
* 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 <[email protected]>
---
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