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

32 lines
857 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
2014-09-15 07:55:31 +00:00
stdenv.mkDerivation rec {
2016-05-12 22:11:41 +00:00
version = "1.4.23";
2014-01-25 22:45:15 +00:00
name = "ccid-${version}";
src = fetchurl {
2016-05-12 22:11:41 +00:00
url = "https://alioth.debian.org/frs/download.php/file/4169/ccid-1.4.23.tar.bz2";
sha256 = "0s7c2g8idnnh19958aswaa2s51ncr2j7gqrkk5g95qpfnv7asdh8";
};
patchPhase = ''
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")
'';
2015-08-06 02:25:49 +00:00
nativeBuildInputs = [ pkgconfig perl ];
buildInputs = [ pcsclite libusb1 ];
2014-09-15 07:55:31 +00:00
meta = with stdenv.lib; {
description = "ccid drivers for pcsclite";
homepage = http://pcsclite.alioth.debian.org/;
2014-09-15 07:55:31 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ viric wkennington ];
platforms = platforms.linux;
};
}