nixpkgs/pkgs/tools/security/ccid/default.nix
William A. Kennington III 1efd5f0fdf ccid: 1.4.18 -> 1.4.19
2015-05-24 01:53:14 -07:00

30 lines
883 B
Nix

{ stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
stdenv.mkDerivation rec {
version = "1.4.19";
name = "ccid-${version}";
src = fetchurl {
url = "http://ftp.de.debian.org/debian/pool/main/c/ccid/ccid_${version}.orig.tar.bz2";
sha256 = "1q9lx5ci8kikwk9mhbjl6m3zk4id209zfna5wgpqjrp5nhmjrjyc";
};
patchPhase = ''
sed -i 's,/usr/bin/env perl,${perl}/bin/perl,' src/*.pl
substituteInPlace src/Makefile.in --replace /bin/echo echo
'';
preConfigure = ''
configureFlags="$configureFlags --enable-usbdropdir=$out/pcsc/drivers"
'';
buildInputs = [ pcsclite pkgconfig 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 = with platforms; linux;
};
}