base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / security / libacr38u / default.nix
blob45db3985d555dc6073f530a46ea10dd9ac65b53f
1 { lib, stdenv, fetchurl, autoreconfHook, pkg-config, pcsclite , libusb-compat-0_1, IOKit }:
3 stdenv.mkDerivation {
4   version = "1.7.11";
5   pname = "libacr38u";
7   src = fetchurl {
8     url = "http://http.debian.net/debian/pool/main/a/acr38/acr38_1.7.11.orig.tar.bz2";
9     sha256 = "0lxbq17y51cablx6bcd89klwnyigvkz0rsf9nps1a97ggnllyzkx";
10   };
12   doCheck = true;
14   nativeBuildInputs = [ autoreconfHook pkg-config ];
15   buildInputs = [ pcsclite libusb-compat-0_1 ]
16     ++ lib.optional stdenv.hostPlatform.isDarwin IOKit;
18   preBuild = ''
19     makeFlagsArray=(usbdropdir="$out/pcsc/drivers");
20   '';
22   meta = with lib; {
23     description = "ACR38U smartcard reader driver for pcsclite";
24     longDescription = ''
25       A PC/SC IFD handler implementation for the ACS ACR38U
26       smartcard readers. This driver is for the non-CCID version only.
28       This package is needed to communicate with the ACR38U smartcard readers through
29       the PC/SC Lite resource manager (pcscd).
31       It can be enabled in /etc/nixos/configuration.nix by adding:
32         services.pcscd.enable = true;
33         services.pcscd.plugins = [ libacr38u ];
35       The package is based on the debian package libacr38u.
36     '';
37     homepage = "https://www.acs.com.hk";
38     license = licenses.lgpl2Plus;
39     maintainers = with maintainers; [ berce ];
40     platforms = with platforms; unix;
41   };