mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Add libnfc 1.7.1
This commit is contained in:
parent
e54db9a99a
commit
74625641f8
21
pkgs/development/libraries/libnfc/default.nix
Normal file
21
pkgs/development/libraries/libnfc/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, fetchurl, libusb }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libnfc-${version}";
|
||||
version = "1.7.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dl.bintray.com/nfc-tools/sources/libnfc-1.7.1.tar.bz2";
|
||||
sha256 = "0wj0iwwcpmpalyk61aa7yc6i4p9hgdajkrgnlswgk0vnwbc78pll";
|
||||
};
|
||||
|
||||
buildInputs = [ libusb ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Open source library libnfc for Near Field Communication";
|
||||
license = licenses.gpl3;
|
||||
homepage = http://code.google.com/p/libnfc/;
|
||||
maintainers = with maintainers; [offline];
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
|
@ -5268,6 +5268,8 @@ let
|
|||
|
||||
libnatspec = callPackage ../development/libraries/libnatspec { };
|
||||
|
||||
libnfc = callPackage ../development/libraries/libnfc { };
|
||||
|
||||
libnfsidmap = callPackage ../development/libraries/libnfsidmap { };
|
||||
|
||||
libnice = callPackage ../development/libraries/libnice { };
|
||||
|
|
Loading…
Reference in a new issue