~ruther/guix-local

103e35a3d893e2a83372962faae616b9fa8c0622 — Sharlatan Hellseher 1 year, 13 days ago 84b9934
gnu: Add go-github-com-tj-go-kinesis.

* gnu/packages/golang-web.scm (go-github-com-tj-go-kinesis)
(go-github-com-tj-go-kinesis-bootstrap): New variables.

Change-Id: I1c2bf7363492e2ffe401fb50c2df933492b6a885
1 files changed, 39 insertions(+), 0 deletions(-)

M gnu/packages/golang-web.scm
M gnu/packages/golang-web.scm => gnu/packages/golang-web.scm +39 -0
@@ 9139,6 9139,45 @@ can run applications in other languages and still keep cross compilation.")
     "Package elastic provides an Elasticsearch client with AWS sigv4 support.")
    (license license:expat)))

(define-public go-github-com-tj-go-kinesis
  (package
    (name "go-github-com-tj-go-kinesis")
    (version "0.0.0-20171128231115-08b17f58cb1b")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/tj/go-kinesis")
             (commit (go-version->git-ref version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "108c6p5j6rhhc2cnc2v5368yfsw73y6lzlvz02vpvvjph8rhmld4"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/tj/go-kinesis"))
    (propagated-inputs
     (list go-github-com-apex-log-bootstrap
           go-github-com-aws-aws-sdk-go
           go-github-com-jpillora-backoff))
    (home-page "https://github.com/tj/go-kinesis")
    (synopsis "Batch producer for AWS Kinesis")
    (description
     "Package kinesis implements a batch producer built on top of the official
AWS SDK.")
    (license license:expat)))

(define-public go-github-com-tj-go-kinesis-bootstrap
  (hidden-package
   (package/inherit go-github-com-tj-go-kinesis
     (arguments
      (list #:skip-build? #t
            #:tests? #f
            #:import-path "github.com/tj/go-kinesis"))
    (propagated-inputs
     (list go-github-com-aws-aws-sdk-go
           go-github-com-jpillora-backoff)))))

(define-public go-github-com-tomnomnom-linkheader
  (package
    (name "go-github-com-tomnomnom-linkheader")