Merge pull request #17653 from mbakke/gpshell

Add GlobalPlatform tools
This commit is contained in:
Frederik Rietdijk 2016-08-11 09:08:58 +02:00 committed by GitHub
commit 24fc76e600
4 changed files with 66 additions and 0 deletions

@ -0,0 +1,20 @@
{ stdenv, fetchurl, pkgconfig, zlib, openssl, pcsclite }:
stdenv.mkDerivation rec {
name = "globalplatform-${version}";
version = "6.0.0";
src = fetchurl {
url = "mirror://sourceforge/globalplatform/${name}.tar.gz";
sha256 = "191s9005xbc7i90bzjk4rlw15licd6m0rls9fxli8jyymz2021zy";
};
buildInputs = [ zlib pkgconfig openssl pcsclite ];
meta = with stdenv.lib; {
homepage = https://sourceforge.net/p/globalplatform/wiki/Home/;
description = "Library for interacting with smart card devices";
license = licenses.gpl3;
platforms = platforms.all;
};
}

@ -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;
};
}

@ -0,0 +1,20 @@
{ stdenv, fetchurl, pkgconfig, globalplatform, pcsclite }:
stdenv.mkDerivation rec {
name = "gpshell-${version}";
version = "1.4.4";
src = fetchurl {
url = "mirror://sourceforge/globalplatform/gpshell-${version}.tar.gz";
sha256 = "19a77zvyf2vazbv17185s4pynhylk2ky8vhl4i8pg9zww29sicqi";
};
buildInputs = [ pkgconfig globalplatform pcsclite ];
meta = with stdenv.lib; {
homepage = https://sourceforge.net/p/globalplatform/wiki/Home/;
description = "Smartcard management application";
license = licenses.gpl3;
platforms = platforms.all;
};
}

@ -7386,6 +7386,10 @@ in
glm = callPackage ../development/libraries/glm { };
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 { };
gloox = callPackage ../development/libraries/gloox { };
@ -7506,6 +7510,8 @@ in
gpgstats = callPackage ../tools/security/gpgstats { };
gpshell = callPackage ../development/tools/misc/gpshell { };
grantlee = callPackage ../development/libraries/grantlee { };
gsasl = callPackage ../development/libraries/gsasl { };