fltk: support cross-compilation

Disabling building tests when cross-compiling, since it gives a build fail.
main
Rick van Schijndel 2 years ago
parent 3141204b22
commit d620787dd7
  1. 3
      pkgs/development/libraries/fltk/common.nix

@ -37,7 +37,7 @@
, doxygen
, graphviz
, withExamples ? true
, withExamples ? (stdenv.buildPlatform == stdenv.hostPlatform)
, withShared ? true
}:
@ -139,6 +139,7 @@ stdenv.mkDerivation rec {
# Examples & Tests
"-DFLTK_BUILD_EXAMPLES=${onOff withExamples}"
"-DFLTK_BUILD_TEST=${onOff withExamples}"
# Docs
"-DOPTION_BUILD_HTML_DOCUMENTATION=${onOff withDocs}"

Loading…
Cancel
Save