2021-01-22 00:00:13 +07:00
|
|
|
{ lib, stdenv, fetchurl, libusb-compat-0_1, readline }:
|
2014-08-26 01:21:27 +02:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libnfc";
|
2014-08-26 01:21:27 +02:00
|
|
|
version = "1.7.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://dl.bintray.com/nfc-tools/sources/libnfc-1.7.1.tar.bz2";
|
|
|
|
sha256 = "0wj0iwwcpmpalyk61aa7yc6i4p9hgdajkrgnlswgk0vnwbc78pll";
|
|
|
|
};
|
|
|
|
|
2020-04-28 05:29:39 +02:00
|
|
|
buildInputs = [ libusb-compat-0_1 readline ];
|
2014-08-26 01:21:27 +02:00
|
|
|
|
2021-01-22 00:00:13 +07:00
|
|
|
meta = with lib; {
|
2014-08-26 01:21:27 +02:00
|
|
|
description = "Open source library libnfc for Near Field Communication";
|
|
|
|
license = licenses.gpl3;
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/nfc-tools/libnfc";
|
2014-08-26 01:21:27 +02:00
|
|
|
maintainers = with maintainers; [offline];
|
2015-11-17 21:29:29 +01:00
|
|
|
platforms = platforms.unix;
|
2014-08-26 01:21:27 +02:00
|
|
|
};
|
|
|
|
}
|