mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
22 lines
607 B
Nix
22 lines
607 B
Nix
{ stdenv, fetchurl, libusb-compat-0_1, 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-compat-0_1 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;
|
|
};
|
|
}
|