mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 11:02:05 +00:00
The communication between opensc and pcsclite was not working. Fixing it.
I missed an absolute path. svn path=/nixpkgs/trunk/; revision=19323
This commit is contained in:
parent
e657b30a51
commit
ebee637aaf
|
@ -8,7 +8,8 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0zr04qadk9gsabmhnwmk27kb4zgfpy988nwa9s1k3hc3hn3gls3a";
|
||||
};
|
||||
|
||||
configureFlags = [ "--enable-pcsc" "--enable-nsplugin" ];
|
||||
configureFlags = [ "--enable-pcsc" "--enable-nsplugin"
|
||||
"--with-pcsc-provider=${pcsclite}/lib/libpcsclite.so.1" ];
|
||||
buildInputs = [ libtool readline zlib openssl pcsclite libassuan pkgconfig
|
||||
libXt ] ++
|
||||
stdenv.lib.optional (! stdenv.isLinux) libiconv;
|
||||
|
|
Loading…
Reference in a new issue