mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
openfpgaloader: add optional dependencies
This avoids the following missing features: hidapi-libusb not found: cmsis_dap support disabled zlib library not found: can't flash intel/altera devices
This commit is contained in:
parent
d9d051d6dd
commit
c00e3a79c1
1 changed files with 4 additions and 0 deletions
|
@ -6,6 +6,8 @@
|
|||
, libftdi1
|
||||
, libusb1
|
||||
, udev
|
||||
, hidapi
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -25,6 +27,8 @@ stdenv.mkDerivation rec {
|
|||
libftdi1
|
||||
libusb1
|
||||
udev
|
||||
hidapi
|
||||
zlib
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue