mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
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:
parent
87144b17f8
commit
aa548d2469
1 changed files with 5 additions and 5 deletions
|
@ -5,7 +5,7 @@
|
||||||
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||||
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
;;; 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.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -136,18 +136,18 @@ (define-public gdb-10
|
||||||
(license gpl3+)))
|
(license gpl3+)))
|
||||||
|
|
||||||
;; This version of GDB is required by some of the Rust compilers, see
|
;; This version of GDB is required by some of the Rust compilers, see
|
||||||
;; <https://bugs.gnu.org/37810>.
|
;; <https://github.com/rust-lang/rust/issues/79009>.
|
||||||
(define-public gdb-8.2
|
(define-public gdb-9.2
|
||||||
(package
|
(package
|
||||||
(inherit gdb-10)
|
(inherit gdb-10)
|
||||||
(version "8.2.1")
|
(version "9.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/gdb/gdb-"
|
(uri (string-append "mirror://gnu/gdb/gdb-"
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"00i27xqawjv282a07i73lp1l02n0a3ywzhykma75qg500wll6sha"))))
|
"0mf5fn8v937qwnal4ykn3ji1y2sxk0fa1yfqi679hxmpg6pdf31n"))))
|
||||||
(inputs
|
(inputs
|
||||||
(alist-replace "guile" (list guile-2.0)
|
(alist-replace "guile" (list guile-2.0)
|
||||||
(package-inputs gdb-10)))))
|
(package-inputs gdb-10)))))
|
||||||
|
|
Loading…
Reference in a new issue