mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
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:
parent
2118cddc82
commit
3ac3677876
|
@ -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;
|
||||
}));
|
||||
|
|
Loading…
Reference in a new issue