diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2026-03-05 16:11:01 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-03-10 23:07:44 +0100 |
| commit | 30d1b206024da33e3a6992dbd4c9ba889ee58110 (patch) | |
| tree | a3ff8051614659557f28f63fd69d9f658d6a1255 | |
| parent | 15ca11ee882af059ab2a0e573ba3436044debb59 (diff) | |
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 <ludo@gnu.org>
| -rw-r--r-- | gnu/packages/guile-xyz.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index cbe6e05edf3..0c36d1d7de0 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") |
