guix-kakafarm-channel

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 3f6cce6d01b24018cf1ea458abe02dc8fc10d0d2
parent 3eeb497b5f7c453bc78dedba47464eab9f685e09
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Wed, 29 Nov 2023 22:53:21 +0200

Update to latest version and add a missing dependency.

Diffstat:
Mguile-clipboard-speaker.scm | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/guile-clipboard-speaker.scm b/guile-clipboard-speaker.scm @@ -20,14 +20,14 @@ (origin (uri (git-reference (url git-repository-url) - (commit "106ab3d040487f39bc86f46ddfbbec553b19e69e"))) + (commit "8b493f674c1f42c480c582d10cd50bdae0926555"))) (method git-fetch) (file-name (git-file-name name version)) - (sha256 (base32 "1p83cc7vxvg8h4hj0qdyd95q51gi233bx360cp8y3vlzaplhjvgs")))) + (sha256 (base32 "0ll75spzzmsvc57y4rnd0il7zvlai4q3imva4ildf66gghflhqf5")))) (native-inputs (list guile-3.0)) (inputs - (list bash coreutils xsel guile-3.0 guile-config guile-srfi-180 espeak-ng)) + (list bash coreutils xsel guile-3.0 guile-config guile-srfi-145 guile-srfi-180 espeak-ng)) (build-system guile-build-system) (arguments (list @@ -45,6 +45,7 @@ site-version "/site-ccache")) (guile-config #$(this-package-input "guile-config")) + (guile-srfi-145 #$(this-package-input "guile-srfi-145")) (guile-srfi-180 #$(this-package-input "guile-srfi-180"))) (mkdir-p bin) (symlink (string-append #$output scm "/clipboard-speaker.scm") @@ -53,10 +54,12 @@ `("GUILE_LOAD_PATH" prefix (,(string-append #$output scm) ,(string-append guile-config scm) + ,(string-append guile-srfi-145 scm) ,(string-append guile-srfi-180 scm))) `("GUILE_LOAD_COMPILED_PATH" prefix (,(string-append #$output go) ,(string-append guile-config go) + ,(string-append guile-srfi-145 go) ,(string-append guile-srfi-180 go)))))))))) (home-page git-repository-url) (synopsis "Hello, GNU world: An example GNU package")