forked from mirrors/nixpkgs
4543ae95a3
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.
22 lines
666 B
Nix
22 lines
666 B
Nix
{ stdenv, fetchurl, pkgconfig, globalplatform, openssl_1_0_2, pcsclite }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gppcscconnectionplugin-${version}";
|
|
version = "1.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/globalplatform/${name}.tar.gz";
|
|
sha256 = "0d3vcrh9z55rbal0dchmj661pqqrav9c400bx1c46grcl1q022ad";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ globalplatform openssl_1_0_2 pcsclite ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://sourceforge.net/p/globalplatform/wiki/Home/;
|
|
description = "GlobalPlatform pcsc connection plugin";
|
|
license = [ licenses.lgpl3 licenses.gpl3 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|