libftdi1: fix build when docs are enabled

This commit is contained in:
Michael Raskin 2018-05-27 22:41:06 +02:00
parent 3b5fd4dada
commit 4922268077

View File

@ -22,6 +22,10 @@ stdenv.mkDerivation rec {
++ optionals pythonSupport [ python swig ]
++ optionals docSupport [ doxygen ];
preBuild = stdenv.lib.optionalString docSupport ''
make doc_i
'';
propagatedBuildInputs = [ libusb1 ];
postInstall = ''