From 3ac3677876f06bcb41eb0df047e473780d13c686 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Thu, 30 Jan 2020 11:53:25 -0500 Subject: [PATCH] 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 --- pkgs/top-level/all-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2feb885ba5dd..b7eb16765d04 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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; }));