summary refs log tree commit diff
path: root/pkgs/tools/security/pcsclite
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2021-10-18 13:56:45 +0200
committerJanne Heß <janne@hess.ooo>2021-10-18 13:56:45 +0200
commit722ffe0d53b7311747cefc50d579c60a58d2ccc5 (patch)
tree7953c7137c1179d89f937d9c46d51c6cca7f8a91 /pkgs/tools/security/pcsclite
parentba0649790452a507c0972d788e551baad0ad18be (diff)
downloadnixpkgs-722ffe0d53b7311747cefc50d579c60a58d2ccc5.tar
nixpkgs-722ffe0d53b7311747cefc50d579c60a58d2ccc5.tar.gz
nixpkgs-722ffe0d53b7311747cefc50d579c60a58d2ccc5.tar.bz2
nixpkgs-722ffe0d53b7311747cefc50d579c60a58d2ccc5.tar.lz
nixpkgs-722ffe0d53b7311747cefc50d579c60a58d2ccc5.tar.xz
nixpkgs-722ffe0d53b7311747cefc50d579c60a58d2ccc5.tar.zst
nixpkgs-722ffe0d53b7311747cefc50d579c60a58d2ccc5.zip
pcsclite: 1.9.1 -> 1.9.4
Diffstat (limited to 'pkgs/tools/security/pcsclite')
-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 71bd13c4a72..1488e6561c9 100644
--- a/pkgs/tools/security/pcsclite/default.nix
+++ b/pkgs/tools/security/pcsclite/default.nix
@@ -2,6 +2,7 @@
 , lib
 , fetchurl
 , autoreconfHook
+, autoconf-archive
 , pkg-config
 , perl
 , python3
@@ -13,13 +14,13 @@
 
 stdenv.mkDerivation rec {
   pname = "pcsclite";
-  version = "1.9.1";
+  version = "1.9.4";
 
   outputs = [ "bin" "out" "dev" "doc" "man" ];
 
   src = fetchurl {
     url = "https://pcsclite.apdu.fr/files/pcsc-lite-${version}.tar.bz2";
-    sha256 = "sha256-c8R4m3h2qDOnD0k82iFlXf6FaJ2bfilwHCQyduVeaDo=";
+    sha256 = "sha256:0jqwnpywk9ka3q88b1k93p8s0xhmx1isdpcqa80nd8p04z1am34a";
   };
 
   patches = [ ./no-dropdir-literals.patch ];
@@ -55,7 +56,7 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  nativeBuildInputs = [ autoreconfHook pkg-config perl ];
+  nativeBuildInputs = [ autoreconfHook autoconf-archive pkg-config perl ];
 
   buildInputs = [ python3 ]
     ++ lib.optionals stdenv.isLinux [ dbus polkit systemd ]