nixpkgs/pkgs/development/libraries/globalplatform/default.nix

22 lines
633 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, zlib, openssl_1_0_2, pcsclite }:
2016-08-10 22:53:26 +00:00
stdenv.mkDerivation rec {
pname = "globalplatform";
2016-08-10 22:53:26 +00:00
version = "6.0.0";
src = fetchurl {
url = "mirror://sourceforge/globalplatform/${pname}-${version}.tar.gz";
2016-08-10 22:53:26 +00:00
sha256 = "191s9005xbc7i90bzjk4rlw15licd6m0rls9fxli8jyymz2021zy";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib openssl_1_0_2 pcsclite ];
2016-08-10 22:53:26 +00:00
meta = with stdenv.lib; {
homepage = https://sourceforge.net/p/globalplatform/wiki/Home/;
description = "Library for interacting with smart card devices";
license = licenses.gpl3;
2018-03-17 22:24:17 +00:00
platforms = platforms.linux;
2016-08-10 22:53:26 +00:00
};
}