1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

avrdude: Add libusb to enable USB support

This commit is contained in:
Moritz Ulrich 2013-06-25 22:19:31 +02:00
parent 489040bf58
commit 978fa98933

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"]; }; }