mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #79161 from bcdarwin/octave-disable-qscintilla
octave: build without qscintilla by default
This commit is contained in:
commit
b07817fbb6
1 changed files with 2 additions and 0 deletions
|
@ -9178,6 +9178,7 @@ in
|
|||
let
|
||||
defaultOctaveOptions = {
|
||||
qt = null;
|
||||
qscintilla = null;
|
||||
ghostscript = null;
|
||||
graphicsmagick = null;
|
||||
llvm = null;
|
||||
|
@ -9199,6 +9200,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