about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-06-04 13:20:17 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-06-04 16:40:34 +0200
commit53bf7e1907830a3d6c6043a272cd4553b2ce3466 (patch)
treee5b86fb2902271b95276f5237840b74aafada483 /pkgs/tools/security
parent9720e16adcdaa14a5236f87c6c824fd62e45e1ca (diff)
downloadnixlib-53bf7e1907830a3d6c6043a272cd4553b2ce3466.tar
nixlib-53bf7e1907830a3d6c6043a272cd4553b2ce3466.tar.gz
nixlib-53bf7e1907830a3d6c6043a272cd4553b2ce3466.tar.bz2
nixlib-53bf7e1907830a3d6c6043a272cd4553b2ce3466.tar.lz
nixlib-53bf7e1907830a3d6c6043a272cd4553b2ce3466.tar.xz
nixlib-53bf7e1907830a3d6c6043a272cd4553b2ce3466.tar.zst
nixlib-53bf7e1907830a3d6c6043a272cd4553b2ce3466.zip
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
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/pcsclite/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/security/pcsclite/default.nix b/pkgs/tools/security/pcsclite/default.nix
index cb65ff5a3ccb..509a8a12092b 100644
--- a/pkgs/tools/security/pcsclite/default.nix
+++ b/pkgs/tools/security/pcsclite/default.nix
@@ -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 ];