guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add seer-gdb.


From: guix-commits
Subject: branch master updated: gnu: Add seer-gdb.
Date: Fri, 28 Oct 2022 15:58:42 -0400

This is an automated email from the git hooks/post-receive script.

dannym pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 0a604c16b3 gnu: Add seer-gdb.
0a604c16b3 is described below

commit 0a604c16b34f8147bf18e065e8b30d8d23cd8998
Author: Danny Milosavljevic <dannym@scratchpost.org>
AuthorDate: Sun Oct 2 00:29:43 2022 +0200

    gnu: Add seer-gdb.
    
    * gnu/packages/debug.scm (seer-gdb): New variable.
---
 gnu/packages/debug.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

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+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]