2013-02-23 13:00:49 +00:00
|
|
|
{ stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
2014-03-31 23:04:00 +01:00
|
|
|
version = "1.4.16";
|
2014-01-25 22:45:15 +00:00
|
|
|
name = "ccid-${version}";
|
2010-01-09 17:35:57 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-01-25 22:45:15 +00:00
|
|
|
url = "http://ftp.de.debian.org/debian/pool/main/c/ccid/ccid_${version}.orig.tar.bz2";
|
2014-03-31 23:04:00 +01:00
|
|
|
sha256 = "0a0e6aa38863c79e38673c085254fa94fd0aa040b9622304a8d6d4222b7e7ea0";
|
2010-01-09 17:35:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's,/usr/bin/env perl,${perl}/bin/perl,' src/*.pl
|
2013-02-23 13:00:49 +00:00
|
|
|
substituteInPlace src/Makefile.in --replace /bin/echo echo
|
2010-01-09 17:35:57 +00:00
|
|
|
'';
|
|
|
|
preConfigure = ''
|
|
|
|
configureFlags="$configureFlags --enable-usbdropdir=$out/pcsc/drivers"
|
|
|
|
'';
|
|
|
|
|
2013-02-23 13:00:49 +00:00
|
|
|
buildInputs = [ pcsclite pkgconfig libusb1 ];
|
2010-01-09 17:35:57 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "ccid drivers for pcsclite";
|
|
|
|
homepage = http://pcsclite.alioth.debian.org/;
|
|
|
|
license = "GPLv2+";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|