nixpkgs/pkgs/tools/security/ccid/default.nix
R. RyanTM b30e62409e ccid: 1.4.30 -> 1.4.31
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ccid/versions
2019-08-17 15:42:03 -07:00

31 lines
753 B
Nix

{ stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
stdenv.mkDerivation rec {
version = "1.4.31";
name = "ccid-${version}";
src = fetchurl {
url = "https://ccid.apdu.fr/files/${name}.tar.bz2";
sha256 = "1xz8ikr6vk73w3xnwb931yq8lqc1zrj8c3v34n6h63irwjvdfj3b";
};
postPatch = ''
patchShebangs .
substituteInPlace src/Makefile.in --replace /bin/echo echo
'';
preConfigure = ''
configureFlagsArray+=("--enable-usbdropdir=$out/pcsc/drivers")
'';
nativeBuildInputs = [ pkgconfig perl ];
buildInputs = [ pcsclite libusb1 ];
meta = with stdenv.lib; {
description = "ccid drivers for pcsclite";
homepage = https://ccid.apdu.fr/;
license = licenses.gpl2Plus;
platforms = platforms.unix;
};
}