linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / globalplatform / default.nix
bloba8dfa430f5992ef562e2a0c17776ca76c36b9080
1 { lib, stdenv, fetchurl, pkg-config, zlib, openssl_1_0_2, pcsclite }:
3 stdenv.mkDerivation rec {
4   pname = "globalplatform";
5   version  = "6.0.0";
7   src = fetchurl {
8     url = "mirror://sourceforge/globalplatform/${pname}-${version}.tar.gz";
9     sha256 = "191s9005xbc7i90bzjk4rlw15licd6m0rls9fxli8jyymz2021zy";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ zlib openssl_1_0_2 pcsclite ];
15   meta = with lib; {
16     homepage = "https://sourceforge.net/p/globalplatform/wiki/Home/";
17     description = "Library for interacting with smart card devices";
18     license = licenses.gpl3;
19     platforms = platforms.linux;
20   };