mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
Add pcsc-tools, to test ccid cards.
This commit is contained in:
parent
46e5a39cdc
commit
a2f4b94dbe
26
pkgs/tools/security/pcsctools/default.nix
Normal file
26
pkgs/tools/security/pcsctools/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchurl, pkgconfig, udev, dbus_libs, perl, pcsclite }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pcsc-tools-1.4.23";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ludovic.rousseau.free.fr/softwares/pcsc-tools/pcsc-tools-1.4.23.tar.gz";
|
||||
sha256 = "1qjgvvvwhykmzn4js9s3rjnp9pbjc3sz4lb4d7i9kvr3xsv7pjk9";
|
||||
};
|
||||
|
||||
buildInputs = [ udev dbus_libs perl pcsclite ];
|
||||
|
||||
preBuild = ''
|
||||
makeFlags=DESTDIR=$out
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Tools used to test a PC/SC driver, card or reader";
|
||||
homepage = http://ludovic.rousseau.free.fr/softwares/pcsc-tools/;
|
||||
license = licenses.gpl2plus;
|
||||
maintainers = with maintainers; [ viric ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
}
|
@ -2267,6 +2267,8 @@ let
|
||||
|
||||
pcsclite = callPackage ../tools/security/pcsclite { };
|
||||
|
||||
pcsctools = callPackage ../tools/security/pcsctools { };
|
||||
|
||||
pdf2djvu = callPackage ../tools/typesetting/pdf2djvu { };
|
||||
|
||||
pdf2svg = callPackage ../tools/graphics/pdf2svg { };
|
||||
|
Loading…
Reference in New Issue
Block a user