nixpkgs/pkgs/tools/security/ccid/default.nix

32 lines
807 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
2014-09-15 09:55:31 +02:00
stdenv.mkDerivation rec {
version = "1.4.29";
2014-01-25 23:45:15 +01:00
name = "ccid-${version}";
src = fetchurl {
url = "https://ccid.apdu.fr/files/${name}.tar.bz2";
sha256 = "0kdqmbma6sclsrbxy9w85h7cs0v11if4nc2r9v09613k8pl2lhx5";
};
postPatch = ''
2015-08-06 04:25:49 +02:00
patchShebangs .
substituteInPlace src/Makefile.in --replace /bin/echo echo
'';
2015-08-06 04:25:49 +02:00
preConfigure = ''
2015-08-06 04:25:49 +02:00
configureFlagsArray+=("--enable-usbdropdir=$out/pcsc/drivers")
'';
2015-08-06 04:25:49 +02:00
nativeBuildInputs = [ pkgconfig perl ];
buildInputs = [ pcsclite libusb1 ];
2014-09-15 09:55:31 +02:00
meta = with stdenv.lib; {
description = "ccid drivers for pcsclite";
homepage = https://ccid.apdu.fr/;
2014-09-15 09:55:31 +02:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ wkennington ];
platforms = platforms.linux;
};
}