16 stdenv.mkDerivation rec {
20 src = fetchFromGitHub {
24 sha256 = "12aahrvsk21qgpjwcrr01s742ixs44nmjkvcvqyzhqb307x1rrn3";
40 ] ++ lib.optionals stdenv.isDarwin [
45 "--enable-usbdropdir=${placeholder "out"}/pcsc/drivers"
51 sed -e s_/bin/echo_echo_g -i src/Makefile.am
52 patchShebangs src/convert_version.pl
53 patchShebangs src/create_Info_plist.pl
60 automake --force-missing --add-missing
65 description = "A PC/SC driver for Linux/Mac OS X and it supports ACS CCID smart card readers";
67 acsccid is a PC/SC driver for Linux/Mac OS X and it supports ACS CCID smart card
68 readers. This library provides a PC/SC IFD handler implementation and
69 communicates with the readers through the PC/SC Lite resource manager (pcscd).
71 acsccid is based on ccid. See CCID free software driver for more
75 It can be enabled in /etc/nixos/configuration.nix by adding:
76 services.pcscd.enable = true;
77 services.pcscd.plugins = [ pkgs.acsccid ];
79 homepage = src.meta.homepage;
80 license = licenses.lgpl2Plus;
81 maintainers = with maintainers; [ ];
82 platforms = with platforms; unix;