2013-02-23 05:00:49 -08:00
|
|
|
{ stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
|
2014-09-15 00:55:31 -07:00
|
|
|
|
2013-02-23 05:00:49 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2018-09-28 13:29:19 -07:00
|
|
|
version = "1.4.30";
|
2014-01-25 14:45:15 -08:00
|
|
|
name = "ccid-${version}";
|
2010-01-09 09:35:57 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-08-05 07:32:15 -07:00
|
|
|
url = "https://ccid.apdu.fr/files/${name}.tar.bz2";
|
2018-09-28 13:29:19 -07:00
|
|
|
sha256 = "0z7zafdg75fr1adlv2x0zz34s07gljcjg2lsz76s1048w1xhh5xc";
|
2010-01-09 09:35:57 -08:00
|
|
|
};
|
|
|
|
|
2017-10-06 02:56:35 -07:00
|
|
|
postPatch = ''
|
2015-08-05 19:25:49 -07:00
|
|
|
patchShebangs .
|
2013-02-23 05:00:49 -08:00
|
|
|
substituteInPlace src/Makefile.in --replace /bin/echo echo
|
2010-01-09 09:35:57 -08:00
|
|
|
'';
|
2015-08-05 19:25:49 -07:00
|
|
|
|
2010-01-09 09:35:57 -08:00
|
|
|
preConfigure = ''
|
2015-08-05 19:25:49 -07:00
|
|
|
configureFlagsArray+=("--enable-usbdropdir=$out/pcsc/drivers")
|
2010-01-09 09:35:57 -08:00
|
|
|
'';
|
|
|
|
|
2015-08-05 19:25:49 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig perl ];
|
|
|
|
buildInputs = [ pcsclite libusb1 ];
|
2010-01-09 09:35:57 -08:00
|
|
|
|
2014-09-15 00:55:31 -07:00
|
|
|
meta = with stdenv.lib; {
|
2010-01-09 09:35:57 -08:00
|
|
|
description = "ccid drivers for pcsclite";
|
2018-08-05 07:32:15 -07:00
|
|
|
homepage = https://ccid.apdu.fr/;
|
2014-09-15 00:55:31 -07:00
|
|
|
license = licenses.gpl2Plus;
|
2018-07-22 12:50:19 -07:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2015-11-17 12:29:29 -08:00
|
|
|
platforms = platforms.linux;
|
2010-01-09 09:35:57 -08:00
|
|
|
};
|
|
|
|
}
|