3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/ccid/default.nix

30 lines
883 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
2014-09-15 08:55:31 +01:00
stdenv.mkDerivation rec {
2014-09-15 08:55:31 +01:00
version = "1.4.18";
2014-01-25 22:45:15 +00:00
name = "ccid-${version}";
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-09-15 08:55:31 +01:00
sha256 = "1aj14lkmfaxkhk5swqfgn2x18j7fijxs0jnxnx9cdc9f5mxaknsz";
};
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 ];
2014-09-15 08:55:31 +01:00
meta = with stdenv.lib; {
description = "ccid drivers for pcsclite";
homepage = http://pcsclite.alioth.debian.org/;
2014-09-15 08:55:31 +01:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ viric wkennington ];
platforms = with platforms; linux;
};
}