summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-16 13:25:27 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-16 16:32:46 +0100
commitad72e5fbc34e05a34b2f56d9eb2a1e03113c52ff (patch)
treed6dca1915329e73bcfed879958e70e4347f92a45
parentf0b078ef9ddd1bcb960c0e2131fcfa4a3e78f549 (diff)
downloadnixpkgs-ad72e5fbc34e05a34b2f56d9eb2a1e03113c52ff.tar
nixpkgs-ad72e5fbc34e05a34b2f56d9eb2a1e03113c52ff.tar.gz
nixpkgs-ad72e5fbc34e05a34b2f56d9eb2a1e03113c52ff.tar.bz2
nixpkgs-ad72e5fbc34e05a34b2f56d9eb2a1e03113c52ff.tar.lz
nixpkgs-ad72e5fbc34e05a34b2f56d9eb2a1e03113c52ff.tar.xz
nixpkgs-ad72e5fbc34e05a34b2f56d9eb2a1e03113c52ff.tar.zst
nixpkgs-ad72e5fbc34e05a34b2f56d9eb2a1e03113c52ff.zip
google-cloud-cpp: remove packages which are no longer required after #116317
-rw-r--r--pkgs/development/libraries/google-cloud-cpp/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/libraries/google-cloud-cpp/default.nix b/pkgs/development/libraries/google-cloud-cpp/default.nix
index af451281402..d493f31d375 100644
--- a/pkgs/development/libraries/google-cloud-cpp/default.nix
+++ b/pkgs/development/libraries/google-cloud-cpp/default.nix
@@ -9,10 +9,8 @@
 , doxygen
 , protobuf
 , crc32c
-, c-ares
 , fetchurl
 , openssl
-, zlib
 , libnsl
 }:
 let
@@ -33,7 +31,7 @@ let
     };
 
     nativeBuildInputs = [ cmake pkg-config ];
-    buildInputs = [ c-ares c-ares.cmake-config grpc openssl protobuf zlib ];
+    buildInputs = [ grpc openssl protobuf ];
 
     postPatch = ''
       sed -e 's,https://github.com/googleapis/googleapis/archive/9c9f778aedde02f9826d2ae5d0f9c96409ba0f25.tar.gz,file://${googleapis},' \
@@ -55,7 +53,7 @@ in stdenv.mkDerivation rec {
     sha256 = "15wci4m8h6py7fqfziq8mp5m6pxp2h1cbh5rp2k90mk5js4jb9pa";
   };
 
-  buildInputs = [ curl crc32c c-ares c-ares.cmake-config googleapis-cpp-cmakefiles grpc protobuf libnsl ];
+  buildInputs = [ curl crc32c googleapis-cpp-cmakefiles grpc protobuf libnsl ];
   nativeBuildInputs = [ clang-tools cmake pkg-config doxygen ];
 
   outputs = [ "out" "dev" ];