Merge pull request #677 from the-kenny/avrdude

avrdude: Add libusb to enable USB support
This commit is contained in:
Evgeny Egorochkin 2013-06-25 21:57:04 -07:00
commit 3eea6e1489

View File

@ -1,4 +1,4 @@
{ composableDerivation, fetchurl, yacc, flex, texLive }:
{ composableDerivation, fetchurl, yacc, flex, texLive, libusb }:
let edf = composableDerivation.edf; in
@ -12,7 +12,7 @@ composableDerivation.composableDerivation {} rec {
configureFlags = [ "--disable-dependency-tracking" ];
buildInputs = [ yacc flex ];
buildInputs = [ yacc flex libusb ];
flags =
edf { name = "doc"; enable = { buildInputs = texLive; configureFlags = ["--enable-doc"]; }; }