nixpkgs/pkgs/tools/security/pcsctools/default.nix

27 lines
743 B
Nix
Raw Normal View History

2015-03-09 13:50:44 +03:00
{ 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/;
2015-03-09 18:01:10 +03:00
license = licenses.gpl2Plus;
2015-03-09 13:50:44 +03:00
maintainers = with maintainers; [ viric ];
platforms = with platforms; linux;
};
}