summary refs log tree commit diff
path: root/pkgs/development/libraries/libnfc/default.nix
blob: 41d546723600e1b29073997f4ff6cfd2d9e5835d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, stdenv, fetchFromGitHub, libusb-compat-0_1, readline, cmake, pkg-config }:

stdenv.mkDerivation rec {
  pname = "libnfc";
  version = "1.8.0";

  src = fetchFromGitHub {
    owner = "nfc-tools";
    repo = pname;
    rev = "libnfc-${version}";
    sha256 = "5gMv/HajPrUL/vkegEqHgN2d6Yzf01dTMrx4l34KMrQ=";
  };

  nativeBuildInputs = [ cmake pkg-config ];
  buildInputs = [ libusb-compat-0_1 readline ];

  configureFlags = [ "sysconfdir=/etc" ];

  meta = with lib; {
    description = "Open source library libnfc for Near Field Communication";
    license = licenses.gpl3;
    homepage = "https://github.com/nfc-tools/libnfc";
    maintainers = with maintainers; [ offline ];
    platforms = platforms.unix;
  };
}