mongodb-tools: use default openssl

https://github.com/NixOS/nixpkgs/issues/77503
This commit is contained in:
Florian Klink 2020-01-11 11:12:04 +01:00 committed by Jon
parent 2e33f671bf
commit f5f06128b4

View File

@ -2,7 +2,7 @@
, lib , lib
, buildGoPackage , buildGoPackage
, fetchFromGitHub , fetchFromGitHub
, openssl_1_0_2 , openssl
, pkgconfig , pkgconfig
, libpcap , libpcap
}: }:
@ -36,7 +36,7 @@ in buildGoPackage {
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl_1_0_2 libpcap ]; buildInputs = [ openssl libpcap ];
# Mongodb incorrectly names all of their binaries main # Mongodb incorrectly names all of their binaries main
# Let's work around this with our own installer # Let's work around this with our own installer