Merge pull request #22452 from kirelagin/libnfc-osx

libnfc: Add missing dependency on readline
This commit is contained in:
Pascal Wittmann 2017-02-05 11:15:33 +01:00 committed by GitHub
commit 91869fb848

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";