summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoksh <mysticmoksh@riseup.net>2026-05-03 17:58:51 +0530
committerNguyễn Gia Phong <cnx@loang.net>2026-05-11 13:46:07 +0900
commit79eb796cc608b8b337e213c2ef0b049fba6f4e94 (patch)
tree902cfc5b644d34019562e9153ad6fd2d9e4c9a66
parent0f6b97e1a850d85c223bac953dc452f0c2894791 (diff)
gnu: seer-gdb: Update to 2.7.
* gnu/packages/debug.scm (seer-gdb): Update to 2.7. [arguments]: Use gexps. [source]: Indent. <uri>: Drop .git suffix. <file-name>: Use git-file-name. [inputs]: Switch to Qt6 versions of inputs. Add qtsvg and gdb. Change-Id: I324ff5d1a19b6f5267c7b83e8e88cd66ef0c8639 Merges: https://codeberg.org/guix/guix/pulls/8324 Reviewed-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
-rw-r--r--gnu/packages/debug.scm35
1 files changed, 18 insertions, 17 deletions
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm
index f7d5187f64..57424cbf33 100644
--- a/gnu/packages/debug.scm
+++ b/gnu/packages/debug.scm
@@ -978,26 +978,27 @@ engineering.")
(define-public seer-gdb
(package
(name "seer-gdb")
- (version "1.16")
- (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
- "0jdvyg2jab1pvf36pvkyrfsg2wyy8zp1qx0v2ksclgrnr1hja6k6"))))
+ (version "2.7")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/epasveer/seer")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1szfqybqr5z982vian4f0hpsagiqapzys3axwibyjyg5whjswva1"))))
(build-system qt-build-system)
(arguments
- `(#:tests? #f ; Those are strangely manual
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'chdir
- (lambda _
- (chdir "src"))))))
+ (list
+ #:tests? #f ;tests are strangely manual
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _
+ (chdir "src"))))))
(inputs
- (list qtbase-5 qtcharts-5 qtwayland-5))
+ (list gdb qtbase qtcharts qtsvg qtwayland))
(synopsis "GUI frontend for GDB")
(description "This package provides a frontend to GDB, the GNU debugger.")
(home-page "https://github.com/epasveer/seer")