guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 30d1b206024da33e3a6992dbd4c9ba889ee58110
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Mar 5 16:11:01 2026 +0100
gnu: guile-xosd: Build from a version-control checkout.
* gnu/packages/guile-xyz.scm (guile-xosd)[source]: Switch to ‘git-fetch’.
[native-inputs]: Add ‘autoconf’, ‘automake’, ‘libtool’, and ‘texinfo’.
Change-Id: I94c4e13bb4ce7c6ec4cc51cd808ccb140869c7c8
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/packages/guile-xyz.scm | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index cbe6e05edf..0c36d1d7de 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -2457,13 +2457,14 @@ written in pure Scheme by using Guile's foreign
function interface.")
(name "guile-xosd")
(version "0.2.2")
(source (origin
- (method url-fetch)
- (uri (string-append "https://github.com/alezost/" name
- "/releases/download/v" version
- "/" name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/alezost/guile-xosd")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "10r29bpyrsvjalnzkam2falj9k34lvxmch05zs606zp1nk93whp3"))))
+ "0jc88zg6icdg70mxbg732hx5by5bahqjm68yhx2ypqdqi7kqq1fk"))))
(build-system gnu-build-system)
(arguments
`(#:phases
@@ -2476,7 +2477,7 @@ written in pure Scheme by using Guile's foreign function
interface.")
(or (getenv "CPATH") "")))
#t)))))
(native-inputs
- (list pkg-config))
+ (list autoconf automake libtool texinfo pkg-config))
(inputs
(list guile-3.0 libx11 libxext libxinerama xosd))
(home-page "https://github.com/alezost/guile-xosd")