~ruther/guix-local

c394be1e760bca82558535d9750bc5cd1f1f9042 — Sharlatan Hellseher 8 months ago 892a177
gnu: Add go-github-com-google-go-dap.

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

Change-Id: I746f6a6a31813cbf5b2b47b5af0c052db9c7e067
Signed-off-by: jgart <jgart@dismail.de>
1 files changed, 24 insertions(+), 0 deletions(-)

M gnu/packages/golang-web.scm
M gnu/packages/golang-web.scm => gnu/packages/golang-web.scm +24 -0
@@ 4168,6 4168,30 @@ replacement for memcached in many cases.  It provides a data loading mechanism
with caching and de-duplication that works across a set of peer processes.")
    (license license:asl2.0)))

(define-public go-github-com-google-go-dap
  (package
    (name "go-github-com-google-go-dap")
    (version "0.12.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/google/go-dap")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0c0941wxnpx3pscf08gr6vrn90rja8k8pjhl1px0r54kcjidd5js"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/google/go-dap"))
    (home-page "https://github.com/google/go-dap")
    (synopsis "Implementation of the Debug Adapter Protocol in Golang")
    (description
     "Package dap contains data types and code for Debug Adapter
Protocol (DAP) specification.")
    (license license:asl2.0)))

(define-public go-github-com-google-go-github-v31
  (package
    (name "go-github-com-google-go-github-v31")