From 0a604c16b34f8147bf18e065e8b30d8d23cd8998 Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Sun, 2 Oct 2022 00:29:43 +0200 Subject: gnu: Add seer-gdb. * gnu/packages/debug.scm (seer-gdb): New variable. --- gnu/packages/debug.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'gnu/packages/debug.scm') diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm index b3ddfbdee6..0c7f97b386 100644 --- a/gnu/packages/debug.scm +++ b/gnu/packages/debug.scm @@ -61,6 +61,7 @@ #:use-module (gnu packages python) #:use-module (gnu packages python-check) #:use-module (gnu packages python-xyz) + #:use-module (gnu packages qt) #:use-module (gnu packages readline) #:use-module (gnu packages serialization) #:use-module (gnu packages texinfo) @@ -826,3 +827,32 @@ debugger with support for programming, disassembly and reverse engineering.") (home-page "https://github.com/dlbeer/mspdebug") (license license:gpl2+)))) + +(define-public seer-gdb + (package + (name "seer-gdb") + (version "1.11") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/epasveer/seer.git") + (commit (string-append "v" version)))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0778573rixhdanmzp4slghpwgv7pm08n7cpa24rm3wrvs77ic3kb")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f ; Those are strangely manual + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'chdir + (lambda _ + (chdir "src")))))) + (inputs + (list qtbase-5 qtcharts)) + (synopsis "GUI frontend for GDB") + (description "This package provides a frontend to GDB, the GNU debugger.") + (home-page "https://github.com/epasveer/seer") + ;; Note: Some icons in src/resources are creative commons 3.0 and/or 4.0. + (license license:gpl3+))) -- cgit 1.4.1 From 859a10a47d624167cc2fc603a4bf0c8d618fc9a8 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 22 Nov 2022 08:09:10 +0100 Subject: gnu: remake: Update to 4.3-1.6. * gnu/packages/debug.scm (remake): Update to 4.3-1.6. --- gnu/packages/debug.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/debug.scm') diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm index 0c7f97b386..e69d1ce83b 100644 --- a/gnu/packages/debug.scm +++ b/gnu/packages/debug.scm @@ -597,7 +597,7 @@ the position of the variable and allows you to modify its value.") (define-public remake (package (inherit gnu-make) (name "remake") - (version "4.3-1.5") + (version "4.3-1.6") (source (origin (method url-fetch) (uri (let ((upstream-version @@ -609,7 +609,7 @@ the position of the variable and allows you to modify its value.") (file-name (string-append "remake-" version ".tar.gz")) (sha256 (base32 - "0xlx2485y0israv2pfghmv74lxcv9i5y65agy69mif76yc4vfvif")) + "11vvch8bi0yhjfz7gn92b3xmmm0cgi3qfiyhbnnj89frkhbwd87n")) (patches (search-patches "remake-impure-dirs.patch")))) (inputs (modify-inputs (package-inputs gnu-make) -- cgit 1.4.1 From 34e193099c281d63a7508bf453bd16363e44ed6a Mon Sep 17 00:00:00 2001 From: Matthew James Kraai Date: Fri, 18 Nov 2022 04:25:06 -0800 Subject: gnu: Add delve. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/debug.scm (delve): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/debug.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'gnu/packages/debug.scm') diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm index e69d1ce83b..1c4f570fe4 100644 --- a/gnu/packages/debug.scm +++ b/gnu/packages/debug.scm @@ -10,6 +10,7 @@ ;;; Copyright © 2021 Felix Gruber ;;; Copyright © 2021 Foo Chuan Wei ;;; Copyright © 2022 Michael Rohleder +;;; Copyright © 2022 Matthew James Kraai ;;; ;;; This file is part of GNU Guix. ;;; @@ -34,6 +35,8 @@ #:use-module (guix utils) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) + #:use-module (guix build-system go) + #:use-module (guix gexp) #:use-module (gnu packages) #:use-module (gnu packages attr) #:use-module (gnu packages autotools) @@ -856,3 +859,29 @@ engineering.") (home-page "https://github.com/epasveer/seer") ;; Note: Some icons in src/resources are creative commons 3.0 and/or 4.0. (license license:gpl3+))) + +(define-public delve + (package + (name "delve") + (version "1.9.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-delve/delve") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "07jch3yd1pgqviyy18amn23gazbzi7l51f210c3vmc707v3vbbqr")))) + (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.") + (license license:expat))) -- cgit 1.4.1