From c394be1e760bca82558535d9750bc5cd1f1f9042 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 22 Aug 2025 23:31:30 +0100 Subject: [PATCH] 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 --- gnu/packages/golang-web.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index bc6da9b10ca66a6f48ccae6b1f461cff4288b073..5f35bcabac4dc7e634f5ae02505ff026c3dc5266 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -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")