guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: abseil-cpp: Don't use 'package/inherit'.


From: guix-commits
Subject: 01/03: gnu: abseil-cpp: Don't use 'package/inherit'.
Date: Mon, 17 Oct 2022 08:51:45 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 5a5b729d662c6ad069548b1e4331b7f51c31616b
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sun Oct 16 16:17:22 2022 +0200

    gnu: abseil-cpp: Don't use 'package/inherit'.
    
    * gnu/packages/cpp.scm (abseil-cpp): Use object inheritance instead of
    PACKAGE/INHERIT because the inherited package has a different source, thus
    replacements should not be inherited.
---
 gnu/packages/cpp.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index c8df516834..0994ca88bf 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -1025,7 +1025,8 @@ Google's C++ code base.")
 
 (define-public abseil-cpp
   (let ((base abseil-cpp-20200923.3))
-    (package/inherit base
+    (package
+      (inherit base)
       (name "abseil-cpp")
       (version "20220623.1")
       (source (origin



reply via email to

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