diff options
author | Marius Bakke <marius@gnu.org> | 2020-07-02 23:26:46 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-07-02 23:30:21 +0200 |
commit | 5e6d583954b8ca9c4ab2eed3347a92a3ad7ad6fb (patch) | |
tree | 0fa33650762c2a7b1451b4a08cbf94338abc34c8 /gnu/packages/gdb.scm | |
parent | 6a3ae2eec7c7ea06499e70343884ce576e2c29f8 (diff) | |
download | guix-5e6d583954b8ca9c4ab2eed3347a92a3ad7ad6fb.tar guix-5e6d583954b8ca9c4ab2eed3347a92a3ad7ad6fb.tar.gz |
gnu: gdb@8.2: Inherit from the 'full' gdb.
This reverts commit c007d868686fc2f9bf02a34150d4f0ac72b1f8d2, 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.
Diffstat (limited to 'gnu/packages/gdb.scm')
-rw-r--r-- | gnu/packages/gdb.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/gdb.scm b/gnu/packages/gdb.scm index f2f272cc90..b836228506 100644 --- a/gnu/packages/gdb.scm +++ b/gnu/packages/gdb.scm @@ -131,9 +131,9 @@ written in C, C++, Ada, Objective-C, Pascal and more.") ;; 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) |