summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorThomas Strobel <ts468@cam.ac.uk>2015-09-30 11:35:49 +0200
committerThomas Strobel <ts468@cam.ac.uk>2015-09-30 11:36:47 +0200
commit6b934c30d3eb8ff55b78f14214f15befa09859d8 (patch)
tree894c35b66bffcd5ef76b57f1ea0168f92a4a0cfe /pkgs/development
parent741437dffc371c55d9b95fbf67a37517195effb7 (diff)
downloadnixlib-6b934c30d3eb8ff55b78f14214f15befa09859d8.tar
nixlib-6b934c30d3eb8ff55b78f14214f15befa09859d8.tar.gz
nixlib-6b934c30d3eb8ff55b78f14214f15befa09859d8.tar.bz2
nixlib-6b934c30d3eb8ff55b78f14214f15befa09859d8.tar.lz
nixlib-6b934c30d3eb8ff55b78f14214f15befa09859d8.tar.xz
nixlib-6b934c30d3eb8ff55b78f14214f15befa09859d8.tar.zst
nixlib-6b934c30d3eb8ff55b78f14214f15befa09859d8.zip
neardal: init at 0.7-post-git-20150930
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/neardal/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/libraries/neardal/default.nix b/pkgs/development/libraries/neardal/default.nix
new file mode 100644
index 000000000000..8ef5d83c211f
--- /dev/null
+++ b/pkgs/development/libraries/neardal/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub, autoconf, automake, libtool, gettext, pkgconfig, glib, readline }:
+
+stdenv.mkDerivation rec {
+  name = "neardal-0.7-post-git-20150930";
+
+  src = fetchFromGitHub {
+    owner = "connectivity";
+    repo = "neardal";
+    rev = "5b1c8b5c2c45c10f11cee12fbcb397f8953850d7";
+    sha256 = "12qwg7qiw2wfpaxfg2fjkmj5lls0g33xp6w433g8bnkvwlq4s29g";
+  };
+
+  buildInputs = [ autoconf automake libtool pkgconfig glib readline ];
+
+  preConfigure = ''
+    sh autogen.sh
+  '';
+
+  configureFlags = [ "--disable-dependency-tracking" "--disable-traces" ];
+
+  meta = with stdenv.lib; {
+    description = "C APIs to exchange datas with the NFC daemon 'Neard'";
+    license = licenses.lgpl2;
+    homepage = https://01.org/linux-nfc;
+    maintainers = with maintainers; [ tstrobel ];
+    platforms = with platforms; unix;
+  };
+}