summary refs log tree commit diff
path: root/pkgs/development/libraries/libnfc
diff options
context:
space:
mode:
authorJaka Hudoklin <jakahudoklin@gmail.com>2014-08-26 01:21:27 +0200
committerJaka Hudoklin <jakahudoklin@gmail.com>2014-08-26 01:21:27 +0200
commit74625641f84d481e30cdfd11ee9904dbcb41222d (patch)
treeb0073edaedc61ec79783ace8c1a0f0a8b8ca7fc7 /pkgs/development/libraries/libnfc
parente54db9a99a9526ab09624da02549463d7a4235c3 (diff)
downloadnixpkgs-74625641f84d481e30cdfd11ee9904dbcb41222d.tar
nixpkgs-74625641f84d481e30cdfd11ee9904dbcb41222d.tar.gz
nixpkgs-74625641f84d481e30cdfd11ee9904dbcb41222d.tar.bz2
nixpkgs-74625641f84d481e30cdfd11ee9904dbcb41222d.tar.lz
nixpkgs-74625641f84d481e30cdfd11ee9904dbcb41222d.tar.xz
nixpkgs-74625641f84d481e30cdfd11ee9904dbcb41222d.tar.zst
nixpkgs-74625641f84d481e30cdfd11ee9904dbcb41222d.zip
Add libnfc 1.7.1
Diffstat (limited to 'pkgs/development/libraries/libnfc')
-rw-r--r--pkgs/development/libraries/libnfc/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libnfc/default.nix b/pkgs/development/libraries/libnfc/default.nix
new file mode 100644
index 00000000000..a018ce1f0fa
--- /dev/null
+++ b/pkgs/development/libraries/libnfc/default.nix
@@ -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;
+  };
+}