diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-02-02 23:21:33 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-02-05 09:40:38 -0500 |
commit | aa548d246977e40e8bd60acd9ee9f44468a83523 (patch) | |
tree | 39167cae13b7a1bb2d0a8195ac23f17e55cf3e3d /gnu | |
parent | 87144b17f8f77cfe2bff8dee07666617692ac527 (diff) | |
download | guix-aa548d246977e40e8bd60acd9ee9f44468a83523.tar guix-aa548d246977e40e8bd60acd9ee9f44468a83523.tar.gz |
gnu: gdb-8.2.1: Update to 9.2.
* gnu/packages/gdb.scm (gdb-8.2): Replace by...
(gdb-9.2): ... this.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gdb.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/gdb.scm b/gnu/packages/gdb.scm index 13c32d7918..a1d5c10768 100644 --- a/gnu/packages/gdb.scm +++ b/gnu/packages/gdb.scm @@ -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 @@ written in C, C++, Ada, Objective-C, Pascal and more.") (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))))) |