mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
globalplatform: init at 6.0.0
This commit is contained in:
parent
38f322f2cf
commit
67b16f0f85
20
pkgs/development/libraries/globalplatform/default.nix
Normal file
20
pkgs/development/libraries/globalplatform/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user