globalplatform: stick with openssl 1.0.2

While upstream has patches in tree that support newer versions of
OpenSSL those haven't been released and picking them doesn't seem to be
trivial without risking breakage that I can not test. After talking to
the previous maintainer of the package this also seems like the sanest
approach for the time being.
This commit is contained in:
Andreas Rammhold 2019-03-13 01:09:55 +01:00 committed by Robin Gloster
parent e2e07e2871
commit 4543ae95a3
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, zlib, openssl, pcsclite }:
{ stdenv, fetchurl, pkgconfig, zlib, openssl_1_0_2, pcsclite }:
stdenv.mkDerivation rec {
name = "globalplatform-${version}";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib openssl pcsclite ];
buildInputs = [ zlib openssl_1_0_2 pcsclite ];
meta = with stdenv.lib; {
homepage = https://sourceforge.net/p/globalplatform/wiki/Home/;

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, globalplatform, openssl, pcsclite }:
{ stdenv, fetchurl, pkgconfig, globalplatform, openssl_1_0_2, pcsclite }:
stdenv.mkDerivation rec {
name = "gppcscconnectionplugin-${version}";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ globalplatform openssl pcsclite ];
buildInputs = [ globalplatform openssl_1_0_2 pcsclite ];
meta = with stdenv.lib; {
homepage = https://sourceforge.net/p/globalplatform/wiki/Home/;