From cdaf07f30d0011ff6f2c01225ad0186da3bf1116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 5 Mar 2026 16:00:04 +0100 Subject: [PATCH] gnu: guile-daemon: 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-daemon)[source]: Switch to ‘git-fetch’. [native-inputs]: Add ‘autoconf’, ‘automake’, and ‘texinfo’. Change-Id: Ic97cc96fe47e95b6da4c0532e274eabfa458784c Signed-off-by: Ludovic Courtès --- gnu/packages/guile-xyz.scm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 353cc81b41..24158856d5 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")