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

31 lines
756 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchurl, pcsclite, pkg-config, libusb1, perl }:
2014-09-15 07:55:31 +00:00
stdenv.mkDerivation rec {
pname = "ccid";
2021-01-29 13:03:19 +00:00
version = "1.4.34";
src = fetchurl {
url = "https://ccid.apdu.fr/files/${pname}-${version}.tar.bz2";
2021-01-29 13:03:19 +00:00
sha256 = "sha256-5vdkW1mpooROtLGn7/USlg1/BKRlSvAvf9L4re1dtAo=";
};
postPatch = ''
2015-08-06 02:25:49 +00:00
patchShebangs .
substituteInPlace src/Makefile.in --replace /bin/echo echo
'';
2015-08-06 02:25:49 +00:00
preConfigure = ''
2015-08-06 02:25:49 +00:00
configureFlagsArray+=("--enable-usbdropdir=$out/pcsc/drivers")
'';
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config perl ];
2015-08-06 02:25:49 +00:00
buildInputs = [ pcsclite libusb1 ];
meta = with lib; {
description = "ccid drivers for pcsclite";
homepage = "https://ccid.apdu.fr/";
2014-09-15 07:55:31 +00:00
license = licenses.gpl2Plus;
platforms = platforms.unix;
};
}