~ruther/guix-local

af835009515509b63556bdc809ae915737059340 — Sharlatan Hellseher 1 year, 1 month ago eed1cf4
gnu: Add go-github-com-gogo-googleapis.

* gnu/packages/golang-web.scm (go-github-com-gogo-googleapis): New variable.

Change-Id: I5a891f6ad503997a0f1429129bd3c34f45eca618
1 files changed, 27 insertions(+), 0 deletions(-)

M gnu/packages/golang-web.scm
M gnu/packages/golang-web.scm => gnu/packages/golang-web.scm +27 -0
@@ 3864,6 3864,33 @@ Go.  Designed to ease things up for fast development with zero memory
allocation and performance in mind.")
    (license license:expat)))

(define-public go-github-com-gogo-googleapis
  (package
    (name "go-github-com-gogo-googleapis")
    (version "1.4.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/gogo/googleapis")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "094znmiswmz8d4b6k7il655gvjrwvraacln0n0lzv5kskbzhlmfi"))))
    (build-system go-build-system)
    (arguments
     (list
      #:skip-build? #t
      #:tests? #f
      #:import-path "github.com/gogo/googleapis"))
    (propagated-inputs (list go-github-com-gogo-protobuf))
    (home-page "https://github.com/gogo/googleapis")
    (synopsis "Google APIs rRPC templates")
    (description
     "This package provides rRPC templates used to interact with Google
APIs.")
    (license license:asl2.0)))

(define-public go-github-com-gogo-protobuf
  (package
    (name "go-github-com-gogo-protobuf")