octave: cleanup callPackages and use sundials_2
This commit is contained in:
parent
749afca8dc
commit
0df00a6ceb
@ -9220,24 +9220,66 @@ in
|
|||||||
git = gitMinimal;
|
git = gitMinimal;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Build summary for this flavor
|
||||||
|
# - Build Octave Qt GUI: no (missing:QtCore QtGui QtNetwork QtHelp QtXml)
|
||||||
|
# - JIT compiler for loops: no
|
||||||
|
# - Build Java interface: yes
|
||||||
|
# - Build static libraries: no
|
||||||
|
# - Build shared libraries: yes
|
||||||
|
# - Dynamic Linking API: dlopen
|
||||||
|
# - Include support for GNU readline: yes
|
||||||
|
# - 64-bit array dims and indexing: yes
|
||||||
|
# - 64-bit BLAS array dims and indexing: yes
|
||||||
|
# - OpenMP SMP multithreading: yes
|
||||||
|
# - Truncate intermediate FP results: yes
|
||||||
|
# - Build cross tools: no
|
||||||
|
# - Build docs: yes
|
||||||
octave = callPackage ../development/interpreters/octave {
|
octave = callPackage ../development/interpreters/octave {
|
||||||
qt = null;
|
python = python3;
|
||||||
qscintilla = null;
|
sundials = sundials_2;
|
||||||
ghostscript = null;
|
|
||||||
graphicsmagick = null;
|
|
||||||
llvm = null;
|
|
||||||
hdf5 = null;
|
|
||||||
glpk = null;
|
|
||||||
suitesparse = null;
|
|
||||||
jdk = null;
|
|
||||||
openblas = if stdenv.isDarwin then openblasCompat else openblas;
|
openblas = if stdenv.isDarwin then openblasCompat else openblas;
|
||||||
};
|
};
|
||||||
|
# Build summary for this flavor
|
||||||
octaveFull = (lowPrio (octave.override {
|
# - Build Octave Qt GUI: no (missing:QtCore QtGui QtNetwork QtHelp QtXml)
|
||||||
qt = qt4;
|
# - JIT compiler for loops: yes
|
||||||
inherit qscintilla;
|
# - Build Java interface: yes
|
||||||
overridePlatforms = ["x86_64-linux" "x86_64-darwin"];
|
# - Build static libraries: no
|
||||||
|
# - Build shared libraries: yes
|
||||||
|
# - Dynamic Linking API: dlopen
|
||||||
|
# - Include support for GNU readline: yes
|
||||||
|
# - 64-bit array dims and indexing: yes
|
||||||
|
# - 64-bit BLAS array dims and indexing: yes
|
||||||
|
# - OpenMP SMP multithreading: yes
|
||||||
|
# - Truncate intermediate FP results: yes
|
||||||
|
# - Build cross tools: no
|
||||||
|
# - Build docs: yes
|
||||||
|
octave-jit = callPackage ../development/interpreters/octave {
|
||||||
|
python = python3;
|
||||||
|
sundials = sundials_2;
|
||||||
openblas = if stdenv.isDarwin then openblasCompat else openblas;
|
openblas = if stdenv.isDarwin then openblasCompat else openblas;
|
||||||
|
enableJIT = true;
|
||||||
|
};
|
||||||
|
# Build summary for this flavor
|
||||||
|
# - Build Octave Qt GUI: yes
|
||||||
|
# - JIT compiler for loops: no
|
||||||
|
# - Build Java interface: yes
|
||||||
|
# - Build static libraries: no
|
||||||
|
# - Build shared libraries: yes
|
||||||
|
# - Dynamic Linking API: dlopen
|
||||||
|
# - Include support for GNU readline: yes
|
||||||
|
# - 64-bit array dims and indexing: yes
|
||||||
|
# - 64-bit BLAS array dims and indexing: yes
|
||||||
|
# - OpenMP SMP multithreading: yes
|
||||||
|
# - Truncate intermediate FP results: yes
|
||||||
|
# - Build cross tools: no
|
||||||
|
# - Build docs: yes
|
||||||
|
# Build summary for this flavor
|
||||||
|
octaveFull = (lowPrio (libsForQt512.callPackage ../development/interpreters/octave {
|
||||||
|
python = python3;
|
||||||
|
sundials = sundials_2;
|
||||||
|
openblas = if stdenv.isDarwin then openblasCompat else openblas;
|
||||||
|
enableQt = true;
|
||||||
|
overridePlatforms = ["x86_64-linux" "x86_64-darwin"];
|
||||||
}));
|
}));
|
||||||
|
|
||||||
ocropus = callPackage ../applications/misc/ocropus { };
|
ocropus = callPackage ../applications/misc/ocropus { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user