diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-14 23:13:29 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-14 23:34:40 +0100 |
commit | f6d8631ad0866010e1cadd74afde7040b1bdf3a6 (patch) | |
tree | fffab7577103c22311d3db6089a3e9acec7cf25e /gnu/packages/golang-xyz.scm | |
parent | 37458248c550537d97c5b7645e612a34ab78ca8e (diff) |
gnu: Add go-github-com-elliotchance-orderedmap-v2.
* gnu/packages/golang-xyz.scm (go-github-com-elliotchance-orderedmap-v2): New variable.
Change-Id: I4a0e7f17e6e93471b661d960b0d1350f1687b847
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 35ab82d275..ebb571e314 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -1983,6 +1983,25 @@ scanner API made public.") O(1) for @code{Set}, @code{Get}, @code{Delete} and @code{Len}.") (license license:expat))) +(define-public go-github-com-elliotchance-orderedmap-v2 + (package + (inherit go-github-com-elliotchance-orderedmap) + (name "go-github-com-elliotchance-orderedmap-v2") + (version "2.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/elliotchance/orderedmap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11bvia6cflq46nzc2hfgikgxyck7wskyi0i7ksy9r0d41l4jh4l9")))) + (arguments + (list + #:import-path "github.com/elliotchance/orderedmap/v2" + #:unpack-path "github.com/elliotchance/orderedmap")))) + (define-public go-github-com-emersion-go-ical (package (name "go-github-com-emersion-go-ical") |