2017-02-04 16:19:54 -08:00
|
|
|
{ stdenv, fetchurl, libusb, readline }:
|
2014-08-25 16:21:27 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libnfc-${version}";
|
|
|
|
version = "1.7.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://dl.bintray.com/nfc-tools/sources/libnfc-1.7.1.tar.bz2";
|
|
|
|
sha256 = "0wj0iwwcpmpalyk61aa7yc6i4p9hgdajkrgnlswgk0vnwbc78pll";
|
|
|
|
};
|
|
|
|
|
2017-02-04 16:19:54 -08:00
|
|
|
buildInputs = [ libusb readline ];
|
2014-08-25 16:21:27 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Open source library libnfc for Near Field Communication";
|
|
|
|
license = licenses.gpl3;
|
2017-10-26 16:44:19 -07:00
|
|
|
homepage = https://github.com/nfc-tools/libnfc;
|
2014-08-25 16:21:27 -07:00
|
|
|
maintainers = with maintainers; [offline];
|
2015-11-17 12:29:29 -08:00
|
|
|
platforms = platforms.unix;
|
2014-08-25 16:21:27 -07:00
|
|
|
};
|
|
|
|
}
|