mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
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:
parent
e2e07e2871
commit
4543ae95a3
@ -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/;
|
||||
|
@ -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/;
|
||||
|
Loading…
Reference in New Issue
Block a user