Commit ecf29d59 authored by Felix Singer's avatar Felix Singer
Browse files

libgpiod: Apply nixfmt

parent 36ecb32f
Loading
Loading
Loading
Loading
+17 −7
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, autoreconfHook, autoconf-archive, pkg-config
, enable-tools ? true }:
{
  lib,
  stdenv,
  fetchurl,
  autoreconfHook,
  autoconf-archive,
  pkg-config,
  enable-tools ? true,
}:

stdenv.mkDerivation rec {
  pname = "libgpiod";
@@ -29,10 +36,13 @@ stdenv.mkDerivation rec {
      data structures behind a straightforward API.
    '';
    homepage = "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/about/";
    license = with licenses; [
    license =
      with licenses;
      [
        lgpl21Plus # libgpiod
        lgpl3Plus # C++ bindings
    ] ++ lib.optional enable-tools gpl2Plus;
      ]
      ++ lib.optional enable-tools gpl2Plus;
    maintainers = [ ];
    platforms = platforms.linux;
  };