diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-09-15 18:20:38 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-09-15 18:47:00 +0200 |
commit | e9ff5d51e3297089e66c124195e1f1b42dbded65 (patch) | |
tree | ce3993c90b76a2275b57bf3231628966897ee122 /gnu/packages/debug.scm | |
parent | 43cdc8a07517e936812782c313fe145bcf5c7ed3 (diff) | |
parent | b696fb41bc0dfcb7130a5aa6d69aff2ae191c283 (diff) |
Merge branch 'master' into gnome-team.
Diffstat (limited to 'gnu/packages/debug.scm')
-rw-r--r-- | gnu/packages/debug.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm index e2a29a3ae9..febc041e53 100644 --- a/gnu/packages/debug.scm +++ b/gnu/packages/debug.scm @@ -892,11 +892,10 @@ to aid in debugging.") (home-page "https://www.gnu.org/software/ddd/") (license license:gpl3+))) - (define-public delve (package (name "delve") - (version "1.9.1") + (version "1.21.0") (source (origin (method git-fetch) @@ -906,14 +905,13 @@ to aid in debugging.") (file-name (git-file-name name version)) (sha256 (base32 - "07jch3yd1pgqviyy18amn23gazbzi7l51f210c3vmc707v3vbbqr")))) + "1gdynx4gp02lj47znnf638kkbmmsl24a9fis81a2fg3pdrg6jg3c")))) (build-system go-build-system) (arguments (list #: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)))) - (propagated-inputs (list go)) (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.") |