32 lines
857 B
Nix
32 lines
857 B
Nix
{ stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.4.27";
|
|
name = "ccid-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://alioth.debian.org/frs/download.php/file/4218/ccid-1.4.27.tar.bz2";
|
|
sha256 = "0dyikpmhsph36ndgd61bs4yx437v5y0bmm8ahjacp1k9c1ly4q56";
|
|
};
|
|
|
|
patchPhase = ''
|
|
patchShebangs .
|
|
substituteInPlace src/Makefile.in --replace /bin/echo echo
|
|
'';
|
|
|
|
preConfigure = ''
|
|
configureFlagsArray+=("--enable-usbdropdir=$out/pcsc/drivers")
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkgconfig perl ];
|
|
buildInputs = [ pcsclite libusb1 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "ccid drivers for pcsclite";
|
|
homepage = http://pcsclite.alioth.debian.org/;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ viric wkennington ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|