avrdude: add extra dependencies: libelf, libftdi1, readline

They are strictly speaking optional, but they provide useful features...
This commit is contained in:
Bjørn Forsman 2014-05-31 13:19:34 +02:00
parent be524e925b
commit c7c32e1d09

@ -1,4 +1,4 @@
{ stdenv, fetchurl, yacc, flex, libusb
{ stdenv, fetchurl, yacc, flex, libusb, libelf, libftdi1, readline
# docSupport is a big dependency, disabled by default
, docSupport ? false, texLive ? null, texinfo ? null, texi2html ? null
}:
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
configureFlags = stdenv.lib.optionalString docSupport "--enable-doc";
buildInputs = [ yacc flex libusb ]
buildInputs = [ yacc flex libusb libelf libftdi1 readline ]
++ stdenv.lib.optionals docSupport [ texLive texinfo texi2html ];
meta = with stdenv.lib; {