~ruther/guix-local

8703783623bf8c4bfbb694321de21dcdc80d19b4 — Arthur Rodrigues 1 year, 1 month ago fd2c10d
gnu: Add go-github-com-lestrrat-go-iter.

* gnu/packages/golang-xyz.scm (go-github-com-lestrrat-go-ite): New variable.

Change-Id: I102a09d4a56d587e49677f81a07bcded1a8c95c6
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 27 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +27 -0
@@ 12491,6 12491,33 @@ or during the tests temporarily change the value of an environment variable in
Golang.")
    (license license:expat)))

(define-public go-github-com-lestrrat-go-iter
  (package
    (name "go-github-com-lestrrat-go-iter")
    (version "1.0.2")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/lestrrat-go/iter")
              (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1p5fhw5g3kh7c6hvw2mc1r4ckxb3ax262x8b736yyhpv2ynl8jyz"))))
    (build-system go-build-system)
    (arguments
     (list
      #:skip-build? #t
      #:import-path "github.com/lestrrat-go/iter"))
    (native-inputs
     (list go-github-com-stretchr-testify))
    (home-page "https://github.com/lestrrat-go/iter")
    (synopsis "Iterator for arbitrary array and map types for Golang")
    (description
     "This package provides a set of utilities to safely iterate over
arbitrary array and maps types.")
    (license license:expat)))

(define-public go-github-com-lestrrat-go-option
  (package
    (name "go-github-com-lestrrat-go-option")