nixpkgs/pkgs/development/libraries/libnfc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
753 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, libusb-compat-0_1, readline, cmake, pkg-config }:
2014-08-25 23:21:27 +00:00
stdenv.mkDerivation rec {
pname = "libnfc";
version = "1.8.0";
2014-08-25 23:21:27 +00:00
src = fetchFromGitHub {
owner = "nfc-tools";
repo = pname;
rev = "libnfc-${version}";
sha256 = "5gMv/HajPrUL/vkegEqHgN2d6Yzf01dTMrx4l34KMrQ=";
2014-08-25 23:21:27 +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
configureFlags = [ "sysconfdir=/etc" ];
meta = with lib; {
broken = stdenv.isDarwin;
2014-08-25 23:21:27 +00:00
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;
2014-08-25 23:21:27 +00:00
};
}