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

31 lines
757 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
2014-09-15 08:55:31 +01:00
stdenv.mkDerivation rec {
pname = "ccid";
2020-07-03 05:27:58 +01:00
version = "1.4.33";
src = fetchurl {
url = "https://ccid.apdu.fr/files/${pname}-${version}.tar.bz2";
2020-07-03 05:27:58 +01:00
sha256 = "0974h2v9wq0j0ajw3c7yckaw8wqcppb2npfhfhmv9phijy9xlmjj";
};
postPatch = ''
2015-08-06 03:25:49 +01:00
patchShebangs .
substituteInPlace src/Makefile.in --replace /bin/echo echo
'';
2015-08-06 03:25:49 +01:00
preConfigure = ''
2015-08-06 03:25:49 +01:00
configureFlagsArray+=("--enable-usbdropdir=$out/pcsc/drivers")
'';
2015-08-06 03:25:49 +01:00
nativeBuildInputs = [ pkgconfig perl ];
buildInputs = [ pcsclite libusb1 ];
2014-09-15 08:55:31 +01:00
meta = with stdenv.lib; {
description = "ccid drivers for pcsclite";
homepage = "https://ccid.apdu.fr/";
2014-09-15 08:55:31 +01:00
license = licenses.gpl2Plus;
platforms = platforms.unix;
};
}