Files
nixpkgs/pkgs/by-name/li/libacr38u/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

56 lines
1.3 KiB
Nix

{
lib,
stdenv,
fetchurl,
autoreconfHook,
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 = [
autoreconfHook
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;
};
}