gppcscconnectionplugin: init at 1.1.0
This commit is contained in:
parent
67b16f0f85
commit
82e2e6e92d
2 changed files with 22 additions and 0 deletions
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue