octave: build without qscintilla by default

- qscintilla is used for IDE features in the GUI, which is not built since qt support isn't enabled
- this removes qt from the Octave closure
This commit is contained in:
Ben Darwin 2020-01-30 11:53:25 -05:00
parent 2118cddc82
commit 3ac3677876

View file

@ -9205,6 +9205,7 @@ in
let
defaultOctaveOptions = {
qt = null;
qscintilla = null;
ghostscript = null;
graphicsmagick = null;
llvm = null;
@ -9226,6 +9227,7 @@ in
octaveFull = (lowPrio (octave.override {
qt = qt4;
inherit qscintilla;
overridePlatforms = ["x86_64-linux" "x86_64-darwin"];
openblas = if stdenv.isDarwin then openblasCompat else openblas;
}));