summary refs log tree commit diff
path: root/pkgs/development/libraries/libnfc
diff options
context:
space:
mode:
authorKirill Elagin <kirelagin@gmail.com>2017-02-05 03:19:54 +0300
committerKirill Elagin <kirelagin@gmail.com>2017-02-05 03:21:59 +0300
commitade80db751498b6f8079aee53c4821a99fc80b03 (patch)
treeb48aa75e77eccfe61b33a92ca5e3ae041cd5ea0c /pkgs/development/libraries/libnfc
parent9a11dda5fdd55061382c8214a954ef70a0805ddb (diff)
downloadnixpkgs-ade80db751498b6f8079aee53c4821a99fc80b03.tar
nixpkgs-ade80db751498b6f8079aee53c4821a99fc80b03.tar.gz
nixpkgs-ade80db751498b6f8079aee53c4821a99fc80b03.tar.bz2
nixpkgs-ade80db751498b6f8079aee53c4821a99fc80b03.tar.lz
nixpkgs-ade80db751498b6f8079aee53c4821a99fc80b03.tar.xz
nixpkgs-ade80db751498b6f8079aee53c4821a99fc80b03.tar.zst
nixpkgs-ade80db751498b6f8079aee53c4821a99fc80b03.zip
libnfc: Add missing dependency on readline
readline is used by the pn53x-tamashell example.
Diffstat (limited to 'pkgs/development/libraries/libnfc')
-rw-r--r--pkgs/development/libraries/libnfc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libnfc/default.nix b/pkgs/development/libraries/libnfc/default.nix
index 89cf3e544e5..150ece2a627 100644
--- a/pkgs/development/libraries/libnfc/default.nix
+++ b/pkgs/development/libraries/libnfc/default.nix
@@ -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";