Merge pull request #245984 from deviant/lftp-openssl

lftp: use openssl instead of gnutls

authored by

Pol Dellaiera and committed by
GitHub
b1a344f8 eaf79c6e

+3 -2
+3 -2
pkgs/tools/networking/lftp/default.nix
··· 1 - { lib, stdenv, fetchurl, gnutls, pkg-config, readline, zlib, libidn2, gmp, libiconv, libunistring, gettext }: 1 + { lib, stdenv, fetchurl, openssl, pkg-config, readline, zlib, libidn2, gmp, libiconv, libunistring, gettext }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "lftp"; ··· 14 14 15 15 nativeBuildInputs = [ pkg-config ]; 16 16 17 - buildInputs = [ gnutls readline zlib libidn2 gmp libiconv libunistring gettext ]; 17 + buildInputs = [ openssl readline zlib libidn2 gmp libiconv libunistring gettext ]; 18 18 19 19 hardeningDisable = lib.optional stdenv.isDarwin "format"; 20 20 21 21 configureFlags = [ 22 + "--with-openssl" 22 23 "--with-readline=${readline.dev}" 23 24 "--with-zlib=${zlib.dev}" 24 25 "--without-expat"