guix-commits
[Top][All Lists]
Advanced

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

04/07: gnu: grpc-1.16.1: Correct input modifications.


From: guix-commits
Subject: 04/07: gnu: grpc-1.16.1: Correct input modifications.
Date: Fri, 21 Apr 2023 07:11:33 -0400 (EDT)

rekado pushed a commit to branch core-updates
in repository guix.

commit 0ea5ef000d51bf53d7eb9dd0768c3d22f65c422f
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Apr 20 22:47:53 2023 +0200

    gnu: grpc-1.16.1: Correct input modifications.
    
    abseil-cpp is not part of the native-inputs but of the inputs.
    
    * gnu/packages/rpc.scm (grpc-1.16.1)[native-inputs]: Only replace protobuf.
    [inputs]: Replace abseil-cpp.
---
 gnu/packages/rpc.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/rpc.scm b/gnu/packages/rpc.scm
index 6ab369bf97..a88c79f8b9 100644
--- a/gnu/packages/rpc.scm
+++ b/gnu/packages/rpc.scm
@@ -171,10 +171,12 @@ browsers to backend services.")
                               "src/core/lib/iomgr/ev_epollex_linux.cc")
                  (("gettid\\(")
                   "sys_gettid("))))))))
+    (inputs
+     (modify-inputs (package-inputs grpc)
+       (replace "abseil-cpp" abseil-cpp-20200923.3)))
     (native-inputs
      (modify-inputs (package-native-inputs grpc)
-       (delete "abseil-cpp" "protobuf")
-       (prepend abseil-cpp-20200923.3 protobuf-3.6)))))
+       (replace "protobuf" protobuf-3.6)))))
 
 (define-public python-grpc-stubs
   (package



reply via email to

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