globalplatform: init at 6.0.0

This commit is contained in:
Marius Bakke 2016-08-10 23:53:26 +01:00
parent 38f322f2cf
commit 67b16f0f85
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, 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;
};
}

View File

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