summaryrefslogtreecommitdiff
path: root/gnu/packages/debug.scm
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/packages/debug.scm
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/packages/debug.scm')
-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 @@
59 #:use-module (gnu packages glib) 59 #:use-module (gnu packages glib)
60 #:use-module (gnu packages gtk) 60 #:use-module (gnu packages gtk)
61 #:use-module (gnu packages golang) 61 #:use-module (gnu packages golang)
62 #:use-module (gnu packages golang-build)
63 #:use-module (gnu packages golang-web)
64 #:use-module (gnu packages golang-xyz)
62 #:use-module (gnu packages image) 65 #:use-module (gnu packages image)
63 #:use-module (gnu packages lesstif) 66 #:use-module (gnu packages lesstif)
64 #:use-module (gnu packages libusb) 67 #:use-module (gnu packages libusb)
@@ -1043,7 +1046,7 @@ to aid in debugging.")
1043(define-public delve 1046(define-public delve
1044 (package 1047 (package
1045 (name "delve") 1048 (name "delve")
1046 (version "1.23.1") 1049 (version "1.25.1")
1047 (source 1050 (source
1048 (origin 1051 (origin
1049 (method git-fetch) 1052 (method git-fetch)
@@ -1053,13 +1056,34 @@ to aid in debugging.")
1053 (file-name (git-file-name name version)) 1056 (file-name (git-file-name name version))
1054 (sha256 1057 (sha256
1055 (base32 1058 (base32
1056 "1k0ink3jjplbq1si7cnrm7ch6jasnc3y83yksmrwhhbfa1ybk87s")))) 1059 "0rfpgh9ijb0lcyrfscxb3k1552wwhqj0jxv5zfyrsfm1n6j8dc93"))
1060 (snippet
1061 #~(begin (use-modules (guix build utils))
1062 (delete-file-recursively "vendor")))))
1057 (build-system go-build-system) 1063 (build-system go-build-system)
1058 (arguments 1064 (arguments
1059 (list #:import-path "github.com/go-delve/delve/cmd/dlv" 1065 (list #:tests? #f ;XXX: Some tests fail, check why.
1066 #:import-path "github.com/go-delve/delve/cmd/dlv"
1060 #:unpack-path "github.com/go-delve/delve" 1067 #:unpack-path "github.com/go-delve/delve"
1061 #:install-source? #f 1068 #:install-source? #f))
1062 #:phases #~(modify-phases %standard-phases (delete 'check)))) 1069 (native-inputs
1070 (list go-github-com-cilium-ebpf
1071 go-github-com-cosiner-argv
1072 go-github-com-creack-pty
1073 go-github-com-derekparker-trie
1074 go-github-com-go-delve-liner
1075 go-github-com-google-go-dap
1076 go-github-com-hashicorp-golang-lru
1077 go-github-com-mattn-go-colorable
1078 go-github-com-mattn-go-isatty
1079 go-github-com-spf13-cobra
1080 go-github-com-spf13-pflag
1081 go-go-starlark-net
1082 go-golang-org-x-arch
1083 go-golang-org-x-sys
1084 go-golang-org-x-telemetry
1085 go-golang-org-x-tools
1086 go-gopkg-in-yaml-v3))
1063 (home-page "https://github.com/go-delve/delve") 1087 (home-page "https://github.com/go-delve/delve")
1064 (synopsis "Debugger for the Go programming language") 1088 (synopsis "Debugger for the Go programming language")
1065 (description "Delve is a debugger for the Go programming language.") 1089 (description "Delve is a debugger for the Go programming language.")