guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: gdb@8.2: Do not inherit replacements from 'gdb'.


From: guix-commits
Subject: 02/03: gnu: gdb@8.2: Do not inherit replacements from 'gdb'.
Date: Sat, 27 Jun 2020 04:05:24 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit a81b8dfeb5a882e27e3df873e3e68ea16b1f9458
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sat Jun 27 10:02:01 2020 +0200

    gnu: gdb@8.2: Do not inherit replacements from 'gdb'.
    
    * gnu/packages/gdb.scm (gdb-8.2): Use INHERIT instead of PACKAGE/INHERIT.
---
 gnu/packages/gdb.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/gdb.scm b/gnu/packages/gdb.scm
index 5c8ea0c..d886558 100644
--- a/gnu/packages/gdb.scm
+++ b/gnu/packages/gdb.scm
@@ -130,16 +130,16 @@ 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-8.2
-  (package/inherit
-   gdb-9.1
-   (version "8.2.1")
-   (source (origin
-             (method url-fetch)
-             (uri (string-append "mirror://gnu/gdb/gdb-"
-                                 version ".tar.xz"))
-             (sha256
-              (base32
-               "00i27xqawjv282a07i73lp1l02n0a3ywzhykma75qg500wll6sha"))))))
+  (package
+    (inherit gdb-9.1)
+    (version "8.2.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnu/gdb/gdb-"
+                                  version ".tar.xz"))
+              (sha256
+               (base32
+                "00i27xqawjv282a07i73lp1l02n0a3ywzhykma75qg500wll6sha"))))))
 
 (define-public gdb
   ;; This is the fixed version that packages depend on.  Update it rarely



reply via email to

[Prev in Thread] Current Thread [Next in Thread]