summary refs log tree commit diff
path: root/pkgs/development/libraries/libgpiod
diff options
context:
space:
mode:
authorJoe Hermaszewski <git@monoid.al>2018-12-01 00:24:39 +0800
committerJörg Thalheim <joerg@thalheim.io>2018-12-05 11:18:31 +0000
commit33e7330440b5e0c50d482a5d283fe09f42b43830 (patch)
tree20e805ac6b406c3be4629a6a79981032753bf88f /pkgs/development/libraries/libgpiod
parent99231a36bbb40e5886cdece219a4cb26da185bfc (diff)
downloadnixpkgs-33e7330440b5e0c50d482a5d283fe09f42b43830.tar
nixpkgs-33e7330440b5e0c50d482a5d283fe09f42b43830.tar.gz
nixpkgs-33e7330440b5e0c50d482a5d283fe09f42b43830.tar.bz2
nixpkgs-33e7330440b5e0c50d482a5d283fe09f42b43830.tar.lz
nixpkgs-33e7330440b5e0c50d482a5d283fe09f42b43830.tar.xz
nixpkgs-33e7330440b5e0c50d482a5d283fe09f42b43830.tar.zst
nixpkgs-33e7330440b5e0c50d482a5d283fe09f42b43830.zip
libgpiod: init at 2018-10-07
Co-Authored-By: expipiplus1 <github@sub.monoid.al>
Diffstat (limited to 'pkgs/development/libraries/libgpiod')
-rw-r--r--pkgs/development/libraries/libgpiod/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libgpiod/default.nix b/pkgs/development/libraries/libgpiod/default.nix
new file mode 100644
index 00000000000..c498ef3460a
--- /dev/null
+++ b/pkgs/development/libraries/libgpiod/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchgit, autoreconfHook, autoconf-archive, pkgconfig, kmod, enable-tools ? true }:
+
+stdenv.mkDerivation rec {
+  name = "libgpiod-unstable-${version}";
+  version = "2018-10-07";
+
+  src = fetchgit {
+    url = "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git";
+    rev = "4bf402d3a49336eacd33654441d575bd267780b8";
+    sha256 = "01f3jzb133z189sxdiz9qiy65p0bjqhynfllidbpxdr0cxkyyc1d";
+  };
+
+  buildInputs = [ kmod ];
+  nativeBuildInputs = [
+    autoconf-archive
+    pkgconfig
+    autoreconfHook
+  ];
+
+  configureFlags = [
+    "--enable-tools=${if enable-tools then "yes" else "no"}"
+    "--enable-bindings-cxx"
+    "--prefix=$(out)"
+  ];
+
+  meta = with stdenv.lib; {
+    description = "C library and tools for interacting with the linux GPIO character device";
+    longDescription = ''
+      Since linux 4.8 the GPIO sysfs interface is deprecated. User space should use
+      the character device instead. This library encapsulates the ioctl calls and
+      data structures behind a straightforward API.
+    '';
+    homepage = https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/about/;
+    license = licenses.lgpl2;
+    maintainers = [ maintainers.expipiplus1 ];
+    platforms = platforms.linux;
+  };
+}