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