doxygen: depend on libiconv unconditionally
libiconv is already defined per-platform. The actual libiconv library won't be built on platforms like Linux where it doesn't need to be, so there's no need to maintain a separate platform list here. Required to build for FreeBSD.
This commit is contained in:
parent
d528d7c8d7
commit
5445b924f8
@ -18,10 +18,9 @@ stdenv.mkDerivation rec {
|
||||
bison
|
||||
];
|
||||
|
||||
buildInputs =
|
||||
lib.optionals (qt5 != null) (with qt5; [ qtbase wrapQtAppsHook ])
|
||||
++ lib.optional stdenv.isSunOS libiconv
|
||||
++ lib.optionals stdenv.isDarwin [ CoreServices libiconv ];
|
||||
buildInputs = [ libiconv ]
|
||||
++ lib.optionals (qt5 != null) (with qt5; [ qtbase wrapQtAppsHook ])
|
||||
++ lib.optionals stdenv.isDarwin [ CoreServices ];
|
||||
|
||||
cmakeFlags =
|
||||
[ "-DICONV_INCLUDE_DIR=${libiconv}/include" ] ++
|
||||
|
Loading…
Reference in New Issue
Block a user