2019-03-12 17:09:55 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, globalplatform, openssl_1_0_2, pcsclite }:
|
2016-08-10 15:55:11 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "gppcscconnectionplugin";
|
2016-08-10 15:55:11 -07:00
|
|
|
version = "1.1.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://sourceforge/globalplatform/${pname}-${version}.tar.gz";
|
2016-08-10 15:55:11 -07:00
|
|
|
sha256 = "0d3vcrh9z55rbal0dchmj661pqqrav9c400bx1c46grcl1q022ad";
|
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-03-12 17:09:55 -07:00
|
|
|
buildInputs = [ globalplatform openssl_1_0_2 pcsclite ];
|
2016-08-10 15:55:11 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://sourceforge.net/p/globalplatform/wiki/Home/";
|
2016-08-10 15:55:11 -07:00
|
|
|
description = "GlobalPlatform pcsc connection plugin";
|
|
|
|
license = [ licenses.lgpl3 licenses.gpl3 ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|