gnu: gdb-8.2.1: Update to 9.2.

* gnu/packages/gdb.scm (gdb-8.2): Replace by...
(gdb-9.2): ... this.
This commit is contained in:
Maxim Cournoyer 2021-02-02 23:21:33 -05:00
parent 87144b17f8
commit aa548d2469
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -5,7 +5,7 @@
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@ -136,18 +136,18 @@ (define-public gdb-10
(license gpl3+)))
;; This version of GDB is required by some of the Rust compilers, see
;; <https://bugs.gnu.org/37810>.
(define-public gdb-8.2
;; <https://github.com/rust-lang/rust/issues/79009>.
(define-public gdb-9.2
(package
(inherit gdb-10)
(version "8.2.1")
(version "9.2")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/gdb/gdb-"
version ".tar.xz"))
(sha256
(base32
"00i27xqawjv282a07i73lp1l02n0a3ywzhykma75qg500wll6sha"))))
"0mf5fn8v937qwnal4ykn3ji1y2sxk0fa1yfqi679hxmpg6pdf31n"))))
(inputs
(alist-replace "guile" (list guile-2.0)
(package-inputs gdb-10)))))