summary refs log tree commit diff
path: root/pkgs/development/libraries/globalplatform/default.nix
blob: 5b55a09db6258198ca805163815844f54540be6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ zlib 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;
  };
}