diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2026-03-05 16:08:50 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-03-10 23:07:44 +0100 |
| commit | 15ca11ee882af059ab2a0e573ba3436044debb59 (patch) | |
| tree | 3f71a742dfcc86bb99b68cd12867b297ffea8d60 /gnu | |
| parent | a424f14b19f49eef0080a9c0b3667e6119431c24 (diff) | |
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 <ludo@gnu.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/guile-xyz.scm | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 4659098d08d..cbe6e05edf3 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 |
