summary refs log tree commit diff
path: root/pkgs/servers/rippled/default.nix
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/servers/rippled/default.nix
parent823f0f1ef08b16e0a0b721df8810040333096abd (diff)
downloadnixpkgs-5033fffabe9ac33e444e8c6bd8ab278df1254b66.tar
nixpkgs-5033fffabe9ac33e444e8c6bd8ab278df1254b66.tar.gz
nixpkgs-5033fffabe9ac33e444e8c6bd8ab278df1254b66.tar.bz2
nixpkgs-5033fffabe9ac33e444e8c6bd8ab278df1254b66.tar.lz
nixpkgs-5033fffabe9ac33e444e8c6bd8ab278df1254b66.tar.xz
nixpkgs-5033fffabe9ac33e444e8c6bd8ab278df1254b66.tar.zst
nixpkgs-5033fffabe9ac33e444e8c6bd8ab278df1254b66.zip
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/servers/rippled/default.nix')
-rw-r--r--pkgs/servers/rippled/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/rippled/default.nix b/pkgs/servers/rippled/default.nix
index 55b082f9948..d781f92d45e 100644
--- a/pkgs/servers/rippled/default.nix
+++ b/pkgs/servers/rippled/default.nix
@@ -1,5 +1,5 @@
 { lib, stdenv, fetchgit, fetchurl, git, cmake, pkg-config
-, openssl, boost, grpc, abseil-cpp, protobuf, libnsl }:
+, openssl, boost, grpc, protobuf, libnsl }:
 
 let
   sqlite3 = fetchurl rec {
@@ -130,7 +130,7 @@ in stdenv.mkDerivation rec {
   cmakeFlags = ["-Dstatic=OFF" "-DBoost_NO_BOOST_CMAKE=ON"];
 
   nativeBuildInputs = [ pkg-config cmake git ];
-  buildInputs = [ openssl openssl.dev boostSharedStatic grpc abseil-cpp protobuf libnsl ];
+  buildInputs = [ openssl openssl.dev boostSharedStatic grpc protobuf libnsl ];
 
   preConfigure = ''
     export HOME=$PWD