gppcscconnectionplugin: init at 1.1.0

This commit is contained in:
Marius Bakke 2016-08-10 23:55:11 +01:00
parent 67b16f0f85
commit 82e2e6e92d
No known key found for this signature in database
GPG key ID: DE1F3EA4AC8ECFCD
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, pkgconfig, globalplatform, openssl, pcsclite }:
stdenv.mkDerivation rec {
name = "gppcscconnectionplugin-${version}";
version = "1.1.0";
src = fetchurl {
url = "mirror://sourceforge/globalplatform/${name}.tar.gz";
sha256 = "0d3vcrh9z55rbal0dchmj661pqqrav9c400bx1c46grcl1q022ad";
};
buildInputs = [ pkgconfig globalplatform openssl 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;
};
}

View file

@ -7383,6 +7383,8 @@ in
glm_0954 = callPackage ../development/libraries/glm/0954.nix { };
globalplatform = callPackage ../development/libraries/globalplatform { };
gppcscconnectionplugin =
callPackage ../development/libraries/globalplatform/gppcscconnectionplugin.nix { };
glog = callPackage ../development/libraries/glog { };