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

22 lines
670 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, globalplatform, openssl_1_0_2, pcsclite }:
2016-08-10 22:55:11 +00:00
stdenv.mkDerivation rec {
pname = "gppcscconnectionplugin";
2016-08-10 22:55:11 +00:00
version = "1.1.0";
src = fetchurl {
url = "mirror://sourceforge/globalplatform/${pname}-${version}.tar.gz";
2016-08-10 22:55:11 +00:00
sha256 = "0d3vcrh9z55rbal0dchmj661pqqrav9c400bx1c46grcl1q022ad";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ globalplatform openssl_1_0_2 pcsclite ];
2016-08-10 22:55:11 +00:00
meta = with stdenv.lib; {
homepage = "https://sourceforge.net/p/globalplatform/wiki/Home/";
2016-08-10 22:55:11 +00:00
description = "GlobalPlatform pcsc connection plugin";
license = [ licenses.lgpl3 licenses.gpl3 ];
platforms = platforms.all;
};
}