treewide: remove openssl 1.1 pinning

This commit is contained in:
Robin Gloster
2019-07-30 03:41:32 +02:00
parent fafcf50a56
commit 242e52dbb1
6 changed files with 18 additions and 36 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, pkgconfig, which, zlib, openssl_1_1, libarchive }:
{ stdenv, fetchFromGitHub, pkgconfig, which, zlib, openssl, libarchive }:
stdenv.mkDerivation rec {
pname = "xbps";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig which ];
buildInputs = [ zlib openssl_1_1 libarchive ];
buildInputs = [ zlib openssl libarchive ];
patches = [ ./cert-paths.patch ];