diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2026-03-05 16:00:04 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-03-10 23:07:43 +0100 |
| commit | cdaf07f30d0011ff6f2c01225ad0186da3bf1116 (patch) | |
| tree | 39f6678588844a5e609b57bb2b1f30ddd3e7874c | |
| parent | 9cdaac3acc74f02f9b34088e5da76a8d88de6167 (diff) | |
gnu: guile-daemon: Build from a version-control checkout.
* gnu/packages/guile-xyz.scm (guile-daemon)[source]: Switch to ‘git-fetch’.
[native-inputs]: Add ‘autoconf’, ‘automake’, and ‘texinfo’.
Change-Id: Ic97cc96fe47e95b6da4c0532e274eabfa458784c
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| -rw-r--r-- | gnu/packages/guile-xyz.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 353cc81b41c..24158856d52 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -820,16 +820,16 @@ library for GNU Guile based on the actor model.") (name "guile-daemon") (version "0.1.3") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/alezost/" name - "/releases/download/v" version - "/" name "-" version ".tar.gz")) - (sha256 - (base32 - "08gaqrgjlly9k5si72vvpbr4xhq5v52l5ma5y6a7spid5dd057cy")))) + (method git-fetch) + (uri (git-reference + (url "https://github.com/alezost/guile-daemon") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 (base32 + "0mdxdiwb52zgpz144vii8f4jdia8a7w1i1mpffw8zh3ghglfrjzl")))) (build-system gnu-build-system) (native-inputs - (list pkg-config)) + (list autoconf automake texinfo pkg-config)) (inputs (list guile-3.0)) (home-page "https://github.com/alezost/guile-daemon") |
