diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-26 11:10:10 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-09 21:33:55 +0000 |
commit | c27415d78a3a83cc035318def9b2ff5f2d80f7ef (patch) | |
tree | 48063c5599248edf6e030c1455156443d94e3b8a | |
parent | d26bb26b87f373ef8703d69cf5624f5166d04842 (diff) | |
download | guix-c27415d78a3a83cc035318def9b2ff5f2d80f7ef.tar.gz |
gnu: go-github-com-tekwizely-go-parsing: Update to 0.0.0-20221001173913-aa6d6749ea2d.
* gnu/packages/golang.scm (go-github-com-tekwizely-go-parsing): Update to 0.0.0-20221001173913-aa6d6749ea2d. Change-Id: Ibbea09fc86c8a5a72de2315d2a082978246e8ccc
-rw-r--r-- | gnu/packages/golang.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 7f16568f86..b16c21b22d 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -6589,20 +6589,18 @@ modifying them.") (license license:zlib))) (define-public go-github-com-tekwizely-go-parsing - (let ((commit "1548cfb17df54d365ce9febed0677c06a40a8ceb") - (revision "0")) (package (name "go-github-com-tekwizely-go-parsing") - (version (git-version "0.0.0" revision commit)) + (version "0.0.0-20221001173913-aa6d6749ea2d") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/tekwizely/go-parsing") - (commit commit))) + (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0bv5amka8hb9crc7qvlzi2kbycqrnh9d46b9wgcs8wqzl0z7w609")))) + (base32 "0hz4jwvav1ccvigmlxgg50pal3nxklbl0psf7wdzwr1vzmzmj3n3")))) (build-system go-build-system) (arguments `(#:import-path "github.com/tekwizely/go-parsing")) @@ -6611,7 +6609,7 @@ modifying them.") (description "This package provides Go modules focused on text parsing, with lexers, parsers, and related tools.") - (license license:expat)))) + (license license:expat))) (define-public go-github-com-akosmarton-papipes (let ((commit "3c63b4919c769c9c2b2d07e69a98abb0eb47fe64") |