about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/globalplatform/gppcscconnectionplugin.nix
blob: 043be9e91b50a648798c8a3305eebdd4de91668b (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, globalplatform, openssl_1_0_2, pcsclite }:

stdenv.mkDerivation rec {
  pname = "gppcscconnectionplugin";
  version  = "1.1.0";

  src = fetchurl {
    url = "mirror://sourceforge/globalplatform/${pname}-${version}.tar.gz";
    sha256 = "0d3vcrh9z55rbal0dchmj661pqqrav9c400bx1c46grcl1q022ad";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ globalplatform openssl_1_0_2 pcsclite ];

  meta = with stdenv.lib; {
    homepage = "https://sourceforge.net/p/globalplatform/wiki/Home/";
    description = "GlobalPlatform pcsc connection plugin";
    license = [ licenses.lgpl3 licenses.gpl3 ];
    platforms = platforms.all;
  };
}