4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, pkgconfig, 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 = [ pkgconfig ];
|
|
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;
|
|
};
|
|
}
|