mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
b5c1deca8a
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
31 lines
754 B
Nix
31 lines
754 B
Nix
{ stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.4.30";
|
|
name = "ccid-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://ccid.apdu.fr/files/${name}.tar.bz2";
|
|
sha256 = "0z7zafdg75fr1adlv2x0zz34s07gljcjg2lsz76s1048w1xhh5xc";
|
|
};
|
|
|
|
postPatch = ''
|
|
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 = https://ccid.apdu.fr/;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|