From 6b725157e1d6f16403c888647d8302a3daba5ac9 Mon Sep 17 00:00:00 2001 From: nixbitcoin Date: Wed, 8 Dec 2021 12:14:34 +0000 Subject: [PATCH] clboss: sslSupport -> opensslSupport --- pkgs/clboss/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clboss/default.nix b/pkgs/clboss/default.nix index b45137c..7c89db9 100644 --- a/pkgs/clboss/default.nix +++ b/pkgs/clboss/default.nix @@ -1,7 +1,7 @@ { lib, stdenv, fetchurl, pkgconfig, curl, libev, sqlite }: let - curlWithGnuTLS = curl.override { gnutlsSupport = true; sslSupport = false; }; + curlWithGnuTLS = curl.override { gnutlsSupport = true; opensslSupport = false; }; in stdenv.mkDerivation rec { pname = "clboss";