about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2022-10-30 09:44:34 +0100
committerVladimír Čunát <v@cunat.cz>2022-10-30 09:44:34 +0100
commit5033fffabe9ac33e444e8c6bd8ab278df1254b66 (patch)
tree8530148cff82cb681ca695b76f008e8ba616148e /pkgs/development/libraries
parent823f0f1ef08b16e0a0b721df8810040333096abd (diff)
treewide: avoid mixing abseil-cpp versions
The packages use some version through grpc;
adding in a different one is most likely not a good idea.

`rippled` has been failing to build for weeks already.
The other three packages build before and after this commit.
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/arrow-cpp/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/development/libraries/arrow-cpp/default.nix b/pkgs/development/libraries/arrow-cpp/default.nix
index a72ebc2930929..2ce613c78534b 100644
--- a/pkgs/development/libraries/arrow-cpp/default.nix
+++ b/pkgs/development/libraries/arrow-cpp/default.nix
@@ -3,7 +3,6 @@
 , fetchurl
 , fetchFromGitHub
 , fixDarwinDylibNames
-, abseil-cpp
 , autoconf
 , aws-sdk-cpp
 , boost
@@ -147,10 +146,9 @@ stdenv.mkDerivation rec {
     protobuf
   ] ++ lib.optionals enableS3 [ aws-sdk-cpp openssl ]
   ++ lib.optionals enableGcs [
-    abseil-cpp
     crc32c
     curl
-    google-cloud-cpp
+    google-cloud-cpp grpc
     nlohmann_json
   ];