2022-06-13 20:58:05 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, libusb-compat-0_1
|
|
|
|
, readline
|
|
|
|
, cmake
|
|
|
|
, pkg-config
|
|
|
|
}:
|
2014-08-25 23:21:27 +00:00
|
|
|
|
2022-04-16 13:56:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libnfc";
|
2022-04-16 13:56:12 +00:00
|
|
|
version = "1.8.0";
|
2014-08-25 23:21:27 +00:00
|
|
|
|
2022-04-16 13:56:12 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nfc-tools";
|
|
|
|
repo = pname;
|
|
|
|
rev = "libnfc-${version}";
|
|
|
|
sha256 = "5gMv/HajPrUL/vkegEqHgN2d6Yzf01dTMrx4l34KMrQ=";
|
2014-08-25 23:21:27 +00:00
|
|
|
};
|
|
|
|
|
2022-06-13 20:58:05 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkg-config
|
|
|
|
];
|
2014-08-25 23:21:27 +00:00
|
|
|
|
2022-06-13 20:58:05 +00:00
|
|
|
buildInputs = [
|
|
|
|
libusb-compat-0_1
|
|
|
|
readline
|
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"sysconfdir=/etc"
|
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = lib.optionals stdenv.isDarwin [
|
|
|
|
"-DLIBNFC_DRIVER_PN532_I2C=OFF"
|
|
|
|
"-DLIBNFC_DRIVER_PN532_SPI=OFF"
|
|
|
|
];
|
2021-10-25 13:15:48 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2022-06-13 20:58:05 +00:00
|
|
|
description = "Library for Near Field Communication (NFC)";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/nfc-tools/libnfc";
|
2022-06-13 20:58:05 +00:00
|
|
|
license = licenses.lgpl3Plus;
|
2022-04-16 13:56:12 +00:00
|
|
|
maintainers = with maintainers; [ offline ];
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.unix;
|
2014-08-25 23:21:27 +00:00
|
|
|
};
|
|
|
|
}
|