linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / globalplatform / gppcscconnectionplugin.nix
bloba3ea4305bea71f39bab1c8f76f4bef5429f411e1
1 { lib, stdenv, fetchurl, pkg-config, globalplatform, openssl_1_0_2, pcsclite }:
3 stdenv.mkDerivation rec {
4   pname = "gppcscconnectionplugin";
5   version  = "1.1.0";
7   src = fetchurl {
8     url = "mirror://sourceforge/globalplatform/${pname}-${version}.tar.gz";
9     sha256 = "0d3vcrh9z55rbal0dchmj661pqqrav9c400bx1c46grcl1q022ad";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ globalplatform openssl_1_0_2 pcsclite ];
15   meta = with lib; {
16     homepage = "https://sourceforge.net/p/globalplatform/wiki/Home/";
17     description = "GlobalPlatform pcsc connection plugin";
18     license = [ licenses.lgpl3 licenses.gpl3 ];
19     platforms = platforms.all;
20   };