summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-08-23 08:06:17 +0100
committerjgart <jgart@dismail.de>2025-08-24 21:06:45 -0500
commit0aef9716b6402c7ff116273d2a74298708030d1b (patch)
tree94112f599652f6d08aa6ce9e0ad2c06a373d774a /gnu
parent77b65c81039729e0f821b329b525c9ec1577ea49 (diff)
gnu: delve: Update to 1.25.1.
* gnu/packages/debug.scm (delve): Update to 1.25.1. [srouce] <snippet>: Delete "vendor" directory. [arguments] <tests?>: Use it instead deleting 'check phase. [native-inputs]: Add go-github-com-cilium-ebpf, go-github-com-cosiner-argv, go-github-com-creack-pty, go-github-com-derekparker-trie, go-github-com-go-delve-liner, go-github-com-google-go-dap, go-github-com-hashicorp-golang-lru, go-github-com-mattn-go-colorable, go-github-com-mattn-go-isatty, go-github-com-spf13-cobra, go-github-com-spf13-pflag, go-go-starlark-net, go-golang-org-x-arch, go-golang-org-x-sys, go-golang-org-x-telemetry, go-golang-org-x-tools, and go-gopkg-in-yaml-v3. Closes guix/guix#2131 Change-Id: I23c5f6f477002d8d0b3288973c497ecc2750c05b Change-Id: Iea21ebf095c70c3654fbfd868c5f697912473dea Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/debug.scm34
1 files changed, 29 insertions, 5 deletions
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm
index a0345d82784..96f32980265 100644
--- a/gnu/packages/debug.scm
+++ b/gnu/packages/debug.scm
@@ -59,6 +59,9 @@
#:use-module (gnu packages glib)
#:use-module (gnu packages gtk)
#:use-module (gnu packages golang)
+ #:use-module (gnu packages golang-build)
+ #:use-module (gnu packages golang-web)
+ #:use-module (gnu packages golang-xyz)
#:use-module (gnu packages image)
#:use-module (gnu packages lesstif)
#:use-module (gnu packages libusb)
@@ -1043,7 +1046,7 @@ to aid in debugging.")
(define-public delve
(package
(name "delve")
- (version "1.23.1")
+ (version "1.25.1")
(source
(origin
(method git-fetch)
@@ -1053,13 +1056,34 @@ to aid in debugging.")
(file-name (git-file-name name version))
(sha256
(base32
- "1k0ink3jjplbq1si7cnrm7ch6jasnc3y83yksmrwhhbfa1ybk87s"))))
+ "0rfpgh9ijb0lcyrfscxb3k1552wwhqj0jxv5zfyrsfm1n6j8dc93"))
+ (snippet
+ #~(begin (use-modules (guix build utils))
+ (delete-file-recursively "vendor")))))
(build-system go-build-system)
(arguments
- (list #:import-path "github.com/go-delve/delve/cmd/dlv"
+ (list #:tests? #f ;XXX: Some tests fail, check why.
+ #:import-path "github.com/go-delve/delve/cmd/dlv"
#:unpack-path "github.com/go-delve/delve"
- #:install-source? #f
- #:phases #~(modify-phases %standard-phases (delete 'check))))
+ #:install-source? #f))
+ (native-inputs
+ (list go-github-com-cilium-ebpf
+ go-github-com-cosiner-argv
+ go-github-com-creack-pty
+ go-github-com-derekparker-trie
+ go-github-com-go-delve-liner
+ go-github-com-google-go-dap
+ go-github-com-hashicorp-golang-lru
+ go-github-com-mattn-go-colorable
+ go-github-com-mattn-go-isatty
+ go-github-com-spf13-cobra
+ go-github-com-spf13-pflag
+ go-go-starlark-net
+ go-golang-org-x-arch
+ go-golang-org-x-sys
+ go-golang-org-x-telemetry
+ go-golang-org-x-tools
+ go-gopkg-in-yaml-v3))
(home-page "https://github.com/go-delve/delve")
(synopsis "Debugger for the Go programming language")
(description "Delve is a debugger for the Go programming language.")