1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 11:30:44 +02:00

gnu: seer-gdb: Support wayland.

* gnu/packages/debug.scm (seer-gdb)[build-system]: Switch to qt-build-system.
[inputs]: Add qtwayland-5.

Change-Id: I217e15a9944ace6b7b5b652709f06dfa3123ba1b
This commit is contained in:
Danny Milosavljevic 2025-02-16 12:38:47 +01:00
parent 4ddeb3f853
commit 064684610d
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -39,6 +39,7 @@
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (guix build-system cmake) #:use-module (guix build-system cmake)
#:use-module (guix build-system go) #:use-module (guix build-system go)
#:use-module (guix build-system qt)
#:use-module (guix gexp) #:use-module (guix gexp)
#:use-module (gnu packages) #:use-module (gnu packages)
#:use-module (gnu packages attr) #:use-module (gnu packages attr)
@ -988,7 +989,7 @@ engineering.")
(sha256 (sha256
(base32 (base32
"0jdvyg2jab1pvf36pvkyrfsg2wyy8zp1qx0v2ksclgrnr1hja6k6")))) "0jdvyg2jab1pvf36pvkyrfsg2wyy8zp1qx0v2ksclgrnr1hja6k6"))))
(build-system cmake-build-system) (build-system qt-build-system)
(arguments (arguments
`(#:tests? #f ; Those are strangely manual `(#:tests? #f ; Those are strangely manual
#:phases #:phases
@ -997,7 +998,7 @@ engineering.")
(lambda _ (lambda _
(chdir "src")))))) (chdir "src"))))))
(inputs (inputs
(list qtbase-5 qtcharts-5)) (list qtbase-5 qtcharts-5 qtwayland-5))
(synopsis "GUI frontend for GDB") (synopsis "GUI frontend for GDB")
(description "This package provides a frontend to GDB, the GNU debugger.") (description "This package provides a frontend to GDB, the GNU debugger.")
(home-page "https://github.com/epasveer/seer") (home-page "https://github.com/epasveer/seer")