diff options
author | André Batista <nandre@riseup.net> | 2025-05-27 14:41:57 -0300 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-10 12:31:49 +0100 |
commit | 2602e40362af93e56deb91fed6893a5366ae5c4d (patch) | |
tree | 100fe523b68b43af2af51bdee8270ffbf775dc3e | |
parent | 199fd8541c74b6a459b71166adfced46077779a2 (diff) |
gnu: lyrebird: Update to 0.6.1.
* gnu/packages/golang-web.scm (lyrebird): Update to 0.6.1.
[arguments] <#:go>: Set to go-1.23.
Change-Id: Icb361b94cde4567e6d872cd8b2252ab7b22ef041
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/golang-web.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 02c1225887..e78e54844c 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -10768,7 +10768,7 @@ protocol.") (define-public lyrebird (package (name "lyrebird") - (version "0.6.0") + (version "0.6.1") (source (origin (method git-fetch) @@ -10777,11 +10777,11 @@ protocol.") (commit (string-append "lyrebird-" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1hhilnk72s0h3cm7zw89n3kiqwa32c0r1a1y5ygp432hmrxvr2b0")))) + (base32 "1wmcr2ywzp38z7p8gqb0r4wpsz1f67fn3dln9pswcjscvgm251pj")))) (build-system go-build-system) (arguments (list - #:go go-1.22 + #:go go-1.23 #:build-flags #~(list (string-append "-ldflags=" "-X main.lyrebirdVersion=" #$version " -s -w")) |