Skip to content

Commit

Permalink
avrdude: add libserialport dependency
Browse files Browse the repository at this point in the history
The libserialport dependency was missing which prevented some programmers
e.g. arduino from working. This was fixed by this commit.
  • Loading branch information
funkeleinhorn authored and bjornfor committed Apr 11, 2024
1 parent 9034140 commit d6a67aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/embedded/avrdude/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, cmake, bison, flex, libusb-compat-0_1, libelf
, libftdi1, readline
, libftdi1, readline, libserialport
# documentation building is broken on darwin
, docSupport ? (!stdenv.isDarwin), texliveMedium, texinfo, texi2html, unixtools }:

Expand All @@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
texi2html
];

buildInputs = [ libusb-compat-0_1 libelf libftdi1 readline ];
buildInputs = [ libusb-compat-0_1 libelf libftdi1 libserialport readline ];

cmakeFlags = lib.optionals docSupport [
"-DBUILD_DOC=ON"
Expand Down

0 comments on commit d6a67aa

Please sign in to comment.