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
84 lines
1.8 KiB
Nix
84 lines
1.8 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, autoconf
|
|
, automake
|
|
, libtool
|
|
, gettext
|
|
, flex
|
|
, perl
|
|
, pkgconfig
|
|
, pcsclite
|
|
, libusb1
|
|
, libiconv
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.1.8";
|
|
pname = "acsccid";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "acshk";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "12aahrvsk21qgpjwcrr01s742ixs44nmjkvcvqyzhqb307x1rrn3";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
autoconf
|
|
automake
|
|
libtool
|
|
gettext
|
|
flex
|
|
perl
|
|
];
|
|
|
|
buildInputs = [
|
|
pcsclite
|
|
libusb1
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
|
libiconv
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-usbdropdir=${placeholder "out"}/pcsc/drivers"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
postPatch = ''
|
|
sed -e s_/bin/echo_echo_g -i src/Makefile.am
|
|
patchShebangs src/convert_version.pl
|
|
patchShebangs src/create_Info_plist.pl
|
|
'';
|
|
|
|
preConfigure = ''
|
|
libtoolize --force
|
|
aclocal
|
|
autoheader
|
|
automake --force-missing --add-missing
|
|
autoconf
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A PC/SC driver for Linux/Mac OS X and it supports ACS CCID smart card readers";
|
|
longDescription = ''
|
|
acsccid is a PC/SC driver for Linux/Mac OS X and it supports ACS CCID smart card
|
|
readers. This library provides a PC/SC IFD handler implementation and
|
|
communicates with the readers through the PC/SC Lite resource manager (pcscd).
|
|
|
|
acsccid is based on ccid. See CCID free software driver for more
|
|
information:
|
|
https://ccid.apdu.fr/
|
|
|
|
It can be enabled in /etc/nixos/configuration.nix by adding:
|
|
services.pcscd.enable = true;
|
|
services.pcscd.plugins = [ pkgs.acsccid ];
|
|
'';
|
|
homepage = src.meta.homepage;
|
|
license = licenses.lgpl2Plus;
|
|
maintainers = with maintainers; [ roberth ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|