diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2024-06-01 19:36:18 +0300 |
---|---|---|
committer | Andrew Tropin <andrew@trop.in> | 2024-06-02 13:40:14 +0400 |
commit | aed52972ce05059a6b953c271844999a11013e76 (patch) | |
tree | 2ff0500f157b5a9cdc785b2cdb1f16ae86814786 /gnu/packages/golang.scm | |
parent | dbeef44f3c520816251bde74c1005915a637e1ef (diff) | |
download | guix-aed52972ce05059a6b953c271844999a11013e76.tar guix-aed52972ce05059a6b953c271844999a11013e76.tar.gz |
gnu: go-github-com-arceliar-ironwood: Update to v0.0.0-20240529054413-b8e59574e2b2.
* gnu/packages/golang.scm (go-github-com-arceliar-ironwood): Update to
v0.0.0-20240529054413-b8e59574e2b2.
[arguments]: Use gexps. Use go-1.21.
Change-Id: I30707c7a2cb6229149c6c9e9c0e3752b3222b84a
Signed-off-by: Andrew Tropin <andrew@trop.in>
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index ab41508103..9bf441a938 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -8816,7 +8816,7 @@ dependencies and a simple API.") (define-public go-github-com-arceliar-ironwood (package (name "go-github-com-arceliar-ironwood") - (version "v0.0.0-20231127131626-465b82dfb5bd") + (version "v0.0.0-20240529054413-b8e59574e2b2") (source (origin (method git-fetch) @@ -8826,15 +8826,16 @@ dependencies and a simple API.") (file-name (git-file-name name version)) (sha256 (base32 - "0sywrcvrpkkzi1jxfz2ahqs855h4bmdn1l79q5sdgqiaczr7q4b7")))) + "06ay82gqm3k649m7x0r3a3crnqv9x0yxhyqfabrf1b7inki35mfs")))) (build-system go-build-system) (arguments - '(#:import-path "github.com/Arceliar/ironwood" - #:tests? #f - #:phases - (modify-phases %standard-phases - ;; Source-only package - (delete 'build)))) + (list #:import-path "github.com/Arceliar/ironwood" + #:go go-1.21 + #:tests? #f + #:phases + #~(modify-phases %standard-phases + ;; Source-only package + (delete 'build)))) (propagated-inputs (list go-golang-org-x-crypto go-github-com-arceliar-phony)) (home-page "https://github.com/Arceliar/ironwood") |