mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: gdb@8.2: Inherit from the 'full' gdb.
This reverts commit c007d86868
, because later
versions of Rust requires loading Python plugins.
* gnu/packages/gdb.scm (gdb-minimal-8.2): Rename to ...
(gdb-8.2): ... this. Adjust inheritance accordingly.
* gnu/packages/rust.scm (rust-1.27)[native-inputs]: Adjust accordingly.
This commit is contained in:
parent
6a3ae2eec7
commit
5e6d583954
2 changed files with 3 additions and 3 deletions
|
@ -131,9 +131,9 @@ (define-public gdb-minimal
|
|||
|
||||
;; This version of GDB is required by some of the Rust compilers, see
|
||||
;; <https://bugs.gnu.org/37810>.
|
||||
(define-public gdb-minimal-8.2
|
||||
(define-public gdb-8.2
|
||||
(package
|
||||
(inherit gdb-minimal)
|
||||
(inherit gdb)
|
||||
(version "8.2.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
|
|
|
@ -828,7 +828,7 @@ (define-public rust-1.27
|
|||
(native-inputs
|
||||
;; FIXME: Rust 1.27 and some later versions require GDB 8.2 specifically.
|
||||
;; See <https://bugs.gnu.org/37810>.
|
||||
(alist-replace "gdb" (list gdb-minimal-8.2)
|
||||
(alist-replace "gdb" (list gdb-8.2)
|
||||
(package-native-inputs base-rust)))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments base-rust)
|
||||
|
|
Loading…
Reference in a new issue