about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/libacr38u/default.nix
blob: 314abba853dfc56d960670d30d9409addae14a40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ lib, stdenv, fetchurl, pkg-config, pcsclite , libusb-compat-0_1 }:

stdenv.mkDerivation {
  version = "1.7.11";
  pname = "libacr38u";

  src = fetchurl {
    url = "http://http.debian.net/debian/pool/main/a/acr38/acr38_1.7.11.orig.tar.bz2";
    sha256 = "0lxbq17y51cablx6bcd89klwnyigvkz0rsf9nps1a97ggnllyzkx";
  };

  doCheck = true;

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ pcsclite libusb-compat-0_1 ];

  preBuild = ''
    makeFlagsArray=(usbdropdir="$out/pcsc/drivers");
  '';

  meta = with lib; {
    description = "ACR38U smartcard reader driver for pcsclite";
    longDescription = ''
      A PC/SC IFD handler implementation for the ACS ACR38U
      smartcard readers. This driver is for the non-CCID version only.

      This package is needed to communicate with the ACR38U smartcard readers through
      the PC/SC Lite resource manager (pcscd).

      It can be enabled in /etc/nixos/configuration.nix by adding:
        services.pcscd.enable = true;
        services.pcscd.plugins = [ libacr38u ];

      The package is based on the debian package libacr38u.
    '';
    homepage = "https://www.acs.com.hk";
    license = licenses.lgpl2Plus;
    maintainers = with maintainers; [ berce ];
    platforms = with platforms; unix;
  };
}