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:
parent
489040bf58
commit
978fa98933
|
@ -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"]; }; }
|
||||
|
|
Loading…
Reference in a new issue