From 2eb2501d66d4f0d40e77aac6b0a15d5872f5848b Mon Sep 17 00:00:00 2001 From: Greg Hogan Date: Tue, 26 Jul 2022 17:02:16 +0000 Subject: [PATCH] gnu: Add gdb-12. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/gdb.scm (gdb-12): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/gdb.scm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gnu/packages/gdb.scm b/gnu/packages/gdb.scm index aa9e479e46d..7d8416c7c56 100644 --- a/gnu/packages/gdb.scm +++ b/gnu/packages/gdb.scm @@ -149,6 +149,18 @@ the program is running to try to fix bugs. It can be used to debug programs written in C, C++, Ada, Objective-C, Pascal and more.") (license gpl3+))) +(define-public gdb-12 + (package + (inherit gdb-11) + (version "12.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnu/gdb/gdb-" + version ".tar.xz")) + (sha256 + (base32 + "1vczsqcbh5y0gx7qrclpna0qzx26sk7lra6y8qzxam1biyzr65qf")))))) + (define-public gdb ;; This is the fixed version that packages depend on. Update it rarely ;; enough to avoid massive rebuilds.