2022-04-16 13:56:12 +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-04-16 13:56:12 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2020-04-28 03:29:39 +00:00
|
|
|
buildInputs = [ libusb-compat-0_1 readline ];
|
2014-08-25 23:21:27 +00:00
|
|
|
|
2021-10-25 13:15:48 +00:00
|
|
|
configureFlags = [ "sysconfdir=/etc" ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2022-05-28 13:38:40 +00:00
|
|
|
broken = stdenv.isDarwin;
|
2014-08-25 23:21:27 +00:00
|
|
|
description = "Open source library libnfc for Near Field Communication";
|
|
|
|
license = licenses.gpl3;
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/nfc-tools/libnfc";
|
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
|
|
|
};
|
|
|
|
}
|