pcsclite: 1.8.16 -> 1.8.17

Upstream changes:

  - Fix SCardEndTransaction() issue with a SCARD_SHARE_EXCLUSIVE
    connection
  - Fix an issue when used with systemd (problem in signal handler)
  - SCardGetAttrib(): set pcbAttrLen when buffer is too small
  - Doxygen: SCardGetAttrib() pbAttr can be NULL
  - Doxygen: SCardGetAttrib() *pcbAttrLen contains the buffer size
  - fix compilation warnings and link errors on SunOS
  - Some other minor improvements

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @viric, @wkennington
This commit is contained in:
aszlig 2016-06-04 13:20:17 +02:00
parent 9720e16adc
commit 53bf7e1907
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -1,11 +1,12 @@
{ stdenv, fetchurl, pkgconfig, udev, dbus_libs, perl, python2 }:
stdenv.mkDerivation rec {
name = "pcsclite-1.8.16";
name = "pcsclite-${version}";
version = "1.8.17";
src = fetchurl {
url = "https://alioth.debian.org/frs/download.php/file/4164/pcsc-lite-1.8.16.tar.bz2";
sha256 = "12k8q0ckyy1fqcfh7x0b7kfrlfiscrqaqmidcggnzs4pi2iqml77";
url = "https://alioth.debian.org/frs/download.php/file/4173/pcsc-lite-${version}.tar.bz2";
sha256 = "0vq2291kvnbg8czlakqahxrdhsvp74fqy3z75lfjlkq2aj36yayp";
};
patches = [ ./no-dropdir-literals.patch ];