libnfc: Add missing dependency on readline

readline is used by the pn53x-tamashell example.
This commit is contained in:
Kirill Elagin 2017-02-05 03:19:54 +03:00
parent 9a11dda5fd
commit ade80db751

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, libusb }:
{ stdenv, fetchurl, libusb, readline }:
stdenv.mkDerivation rec {
name = "libnfc-${version}";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "0wj0iwwcpmpalyk61aa7yc6i4p9hgdajkrgnlswgk0vnwbc78pll";
};
buildInputs = [ libusb ];
buildInputs = [ libusb readline ];
meta = with stdenv.lib; {
description = "Open source library libnfc for Near Field Communication";