Skip to content

Commit

Permalink
libgpiod: init at 2018-10-07
Browse files Browse the repository at this point in the history
Co-Authored-By: expipiplus1 <github@sub.monoid.al>
  • Loading branch information
2 people authored and Mic92 committed Dec 5, 2018
1 parent 99231a3 commit 33e7330
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
38 changes: 38 additions & 0 deletions 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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -10796,6 +10796,8 @@ in

libgphoto2 = callPackage ../development/libraries/libgphoto2 { };

libgpiod = callPackage ../development/libraries/libgpiod { };

libgpod = callPackage ../development/libraries/libgpod {
inherit (pkgs.pythonPackages) mutagen;
monoSupport = false;
Expand Down

0 comments on commit 33e7330

Please sign in to comment.