nixpkgs/pkgs/tools/security/opensc/0.11.7.nix
Lluís Batlle i Rossell f29068a1de Adding the pinentry dependency to opensc, so it properly calls at least one pinentry.
The upstream opensc 0.11.7 does not allow choosing it at runtime!


svn path=/nixpkgs/trunk/; revision=19449
2010-01-14 22:47:30 +00:00

28 lines
920 B
Nix

{stdenv, fetchurl, libtool, readline, zlib, openssl, libiconv, pcsclite, libassuan, pkgconfig,
libXt, pinentry}:
stdenv.mkDerivation rec {
name = "opensc-0.11.7";
src = fetchurl {
url = "http://www.opensc-project.org/files/opensc/${name}.tar.gz";
sha256 = "0781qi0bsm01wdhkb1vd3ra9wkwgyjcm2w87jb2r53msply2gavd";
};
configureFlags = [ "--enable-pcsc" "--enable-nsplugin"
"--with-pcsc-provider=${pcsclite}/lib/libpcsclite.so.1"
"--with-pinentry=${pinentry}/bin/pinentry" ];
buildInputs = [ libtool readline zlib openssl pcsclite libassuan pkgconfig
libXt ] ++
stdenv.lib.optional (! stdenv.isLinux) libiconv;
meta = {
description = "Set of libraries and utilities to access smart cards";
homepage = http://www.opensc-project.org/opensc/;
license = "LGPL";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}