summary refs log tree commit diff
path: root/pkgs/development/libraries/libnfc/default.nix
blob: 3d069d7a168d5b21fe5a6a6dff7b963bd4b0df04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, libusb, readline }:

stdenv.mkDerivation {
  pname = "libnfc";
  version = "1.7.1";

  src = fetchurl {
    url = "http://dl.bintray.com/nfc-tools/sources/libnfc-1.7.1.tar.bz2";
    sha256 = "0wj0iwwcpmpalyk61aa7yc6i4p9hgdajkrgnlswgk0vnwbc78pll";
  };

  buildInputs = [ libusb readline ];

  meta = with stdenv.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;
  };
}