2020-02-11 20:45:30 +00:00
|
|
|
{ stdenv
|
2021-02-14 06:27:17 +00:00
|
|
|
, pkgs
|
2021-01-23 08:47:37 +00:00
|
|
|
, lib
|
2020-09-22 21:56:46 +01:00
|
|
|
# Note: either stdenv.mkDerivation or, for octaveFull, the qt-5 mkDerivation
|
|
|
|
# with wrapQtAppsHook (comes from libsForQt5.callPackage)
|
|
|
|
, mkDerivation
|
2020-02-11 20:45:30 +00:00
|
|
|
, fetchurl
|
|
|
|
, gfortran
|
|
|
|
, ncurses
|
|
|
|
, perl
|
|
|
|
, flex
|
|
|
|
, texinfo
|
|
|
|
, qhull
|
|
|
|
, libsndfile
|
|
|
|
, portaudio
|
|
|
|
, libX11
|
|
|
|
, graphicsmagick
|
|
|
|
, pcre
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2020-02-11 20:45:30 +00:00
|
|
|
, libGL
|
|
|
|
, libGLU
|
|
|
|
, fltk
|
|
|
|
# Both are needed for discrete Fourier transform
|
|
|
|
, fftw
|
|
|
|
, fftwSinglePrec
|
|
|
|
, zlib
|
|
|
|
, curl
|
2020-03-31 15:47:18 +01:00
|
|
|
, blas, lapack
|
2020-12-10 18:32:06 +00:00
|
|
|
# These two should use the same lapack and blas as the above
|
|
|
|
, qrupdate, arpack, suitesparse ? null
|
|
|
|
# If set to true, the above 5 deps are overriden to use the blas and lapack
|
|
|
|
# with 64 bit indexes support. If all are not compatible, the build will fail.
|
|
|
|
, use64BitIdx ? false
|
2020-02-11 20:45:30 +00:00
|
|
|
, libwebp
|
|
|
|
, gl2ps
|
|
|
|
, ghostscript ? null
|
|
|
|
, hdf5 ? null
|
|
|
|
, glpk ? null
|
|
|
|
, gnuplot ? null
|
2020-02-26 08:09:07 +00:00
|
|
|
# - Include support for GNU readline:
|
|
|
|
, enableReadline ? true
|
|
|
|
, readline ? null
|
|
|
|
# - Build Java interface:
|
|
|
|
, enableJava ? true
|
2020-02-11 20:45:30 +00:00
|
|
|
, jdk ? null
|
|
|
|
, python ? null
|
|
|
|
, overridePlatforms ? null
|
2020-12-19 08:58:04 +00:00
|
|
|
, sundials ? null
|
2021-02-14 06:27:17 +00:00
|
|
|
# - Packages required for building extra packages.
|
|
|
|
, newScope
|
|
|
|
, callPackage
|
|
|
|
, makeSetupHook
|
|
|
|
, makeWrapper
|
2020-02-26 08:09:07 +00:00
|
|
|
# - Build Octave Qt GUI:
|
2020-02-11 20:45:30 +00:00
|
|
|
, enableQt ? false
|
|
|
|
, qtbase ? null
|
|
|
|
, qtsvg ? null
|
|
|
|
, qtscript ? null
|
|
|
|
, qscintilla ? null
|
|
|
|
, qttools ? null
|
2020-02-26 08:09:07 +00:00
|
|
|
# - JIT compiler for loops:
|
2020-02-11 20:45:30 +00:00
|
|
|
, enableJIT ? false
|
|
|
|
, llvm ? null
|
2020-03-23 06:31:11 +00:00
|
|
|
, libiconv
|
|
|
|
, darwin
|
2014-01-07 18:02:01 +00:00
|
|
|
}:
|
2004-08-05 14:05:38 +01:00
|
|
|
|
2020-12-10 18:32:06 +00:00
|
|
|
let
|
2021-02-14 06:27:17 +00:00
|
|
|
|
2020-12-10 18:32:06 +00:00
|
|
|
# Not always evaluated
|
|
|
|
blas' = if use64BitIdx then
|
|
|
|
blas.override {
|
|
|
|
isILP64 = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
blas
|
|
|
|
;
|
|
|
|
lapack' = if use64BitIdx then
|
|
|
|
lapack.override {
|
|
|
|
isILP64 = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
lapack
|
|
|
|
;
|
|
|
|
qrupdate' = qrupdate.override {
|
|
|
|
# If use64BitIdx is false, this override doesn't evaluate to a new
|
|
|
|
# derivation, as blas and lapack are not overriden.
|
|
|
|
blas = blas';
|
|
|
|
lapack = lapack';
|
|
|
|
};
|
|
|
|
arpack' = arpack.override {
|
|
|
|
blas = blas';
|
|
|
|
lapack = lapack';
|
|
|
|
};
|
|
|
|
# Not always suitesparse is required at all
|
|
|
|
suitesparse' = if suitesparse != null then
|
|
|
|
suitesparse.override {
|
|
|
|
blas = blas';
|
|
|
|
lapack = lapack';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
null
|
|
|
|
;
|
2020-02-11 20:46:17 +00:00
|
|
|
|
2021-02-14 06:27:17 +00:00
|
|
|
octavePackages = import ../../../top-level/octave-packages.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
inherit lib stdenv fetchurl newScope;
|
|
|
|
octave = self;
|
2004-08-05 14:05:38 +01:00
|
|
|
};
|
2012-02-21 11:34:57 +00:00
|
|
|
|
2021-02-14 06:27:17 +00:00
|
|
|
wrapOctave = callPackage ./wrap-octave.nix {
|
|
|
|
octave = self;
|
|
|
|
inherit (pkgs) makeSetupHook makeWrapper;
|
|
|
|
};
|
|
|
|
|
|
|
|
self = mkDerivation rec {
|
|
|
|
version = "6.2.0";
|
|
|
|
pname = "octave";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/octave/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "sha256-RX0f2oY0qDni/Xz8VbmL1W82tq5z0xu530Pd4wEsqnw=";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
readline
|
|
|
|
ncurses
|
|
|
|
perl
|
|
|
|
flex
|
|
|
|
qhull
|
|
|
|
graphicsmagick
|
|
|
|
pcre
|
|
|
|
fltk
|
|
|
|
zlib
|
|
|
|
curl
|
|
|
|
blas'
|
|
|
|
lapack'
|
|
|
|
libsndfile
|
|
|
|
fftw
|
|
|
|
fftwSinglePrec
|
|
|
|
portaudio
|
|
|
|
qrupdate'
|
|
|
|
arpack'
|
|
|
|
libwebp
|
|
|
|
gl2ps
|
|
|
|
]
|
|
|
|
++ lib.optionals enableQt [
|
|
|
|
qtbase
|
|
|
|
qtsvg
|
|
|
|
qscintilla
|
|
|
|
]
|
|
|
|
++ lib.optionals (ghostscript != null) [ ghostscript ]
|
|
|
|
++ lib.optionals (hdf5 != null) [ hdf5 ]
|
|
|
|
++ lib.optionals (glpk != null) [ glpk ]
|
|
|
|
++ lib.optionals (suitesparse != null) [ suitesparse' ]
|
|
|
|
++ lib.optionals (enableJava) [ jdk ]
|
|
|
|
++ lib.optionals (sundials != null) [ sundials ]
|
|
|
|
++ lib.optionals (gnuplot != null) [ gnuplot ]
|
|
|
|
++ lib.optionals (python != null) [ python ]
|
|
|
|
++ lib.optionals (!stdenv.isDarwin) [ libGL libGLU libX11 ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [
|
|
|
|
libiconv
|
|
|
|
darwin.apple_sdk.frameworks.Accelerate
|
|
|
|
darwin.apple_sdk.frameworks.Cocoa
|
|
|
|
]
|
|
|
|
;
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
gfortran
|
|
|
|
# Listed here as well because it's outputs are split
|
|
|
|
fftw
|
|
|
|
fftwSinglePrec
|
|
|
|
texinfo
|
|
|
|
]
|
|
|
|
++ lib.optionals (sundials != null) [ sundials ]
|
|
|
|
++ lib.optionals enableJIT [ llvm ]
|
|
|
|
++ lib.optionals enableQt [
|
|
|
|
qtscript
|
|
|
|
qttools
|
|
|
|
]
|
|
|
|
;
|
2017-03-22 14:49:10 +00:00
|
|
|
|
2021-02-14 06:27:17 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
2012-02-21 23:02:36 +00:00
|
|
|
|
2021-02-14 06:27:17 +00:00
|
|
|
enableParallelBuilding = true;
|
2012-02-21 11:34:57 +00:00
|
|
|
|
2021-02-14 06:27:17 +00:00
|
|
|
# See https://savannah.gnu.org/bugs/?50339
|
|
|
|
F77_INTEGER_8_FLAG = if use64BitIdx then "-fdefault-integer-8" else "";
|
2020-02-18 14:33:08 +00:00
|
|
|
|
2021-02-14 06:27:17 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-blas=blas"
|
|
|
|
"--with-lapack=lapack"
|
|
|
|
(if use64BitIdx then "--enable-64" else "--disable-64")
|
|
|
|
]
|
2021-01-23 08:47:37 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ "--enable-link-all-dependencies" ]
|
|
|
|
++ lib.optionals enableReadline [ "--enable-readline" ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ "--with-x=no" ]
|
|
|
|
++ lib.optionals enableQt [ "--with-qt=5" ]
|
|
|
|
++ lib.optionals enableJIT [ "--enable-jit" ]
|
2021-02-14 06:27:17 +00:00
|
|
|
;
|
2012-02-22 22:42:16 +00:00
|
|
|
|
2021-02-14 06:27:17 +00:00
|
|
|
# Keep a copy of the octave tests detailed results in the output
|
|
|
|
# derivation, because someone may care
|
|
|
|
postInstall = ''
|
|
|
|
cp test/fntests.log $out/share/octave/${pname}-${version}-fntests.log || true
|
|
|
|
'';
|
2012-04-12 11:00:18 +01:00
|
|
|
|
2021-02-14 06:27:17 +00:00
|
|
|
passthru = rec {
|
|
|
|
sitePath = "share/octave/${version}/site";
|
|
|
|
octPkgsPath = "share/octave/octave_packages";
|
|
|
|
blas = blas';
|
|
|
|
lapack = lapack';
|
|
|
|
qrupdate = qrupdate';
|
|
|
|
arpack = arpack';
|
|
|
|
suitesparse = suitesparse';
|
|
|
|
inherit fftw fftwSinglePrec;
|
|
|
|
inherit portaudio;
|
|
|
|
inherit jdk;
|
|
|
|
inherit python;
|
|
|
|
inherit enableQt enableJIT enableReadline enableJava;
|
|
|
|
buildEnv = callPackage ./build-env.nix {
|
|
|
|
octave = self;
|
|
|
|
inherit octavePackages wrapOctave;
|
|
|
|
inherit (octavePackages) computeRequiredOctavePackages;
|
|
|
|
};
|
|
|
|
withPackages = import ./with-packages.nix { inherit buildEnv octavePackages; };
|
|
|
|
pkgs = octavePackages;
|
|
|
|
interpreter = "${self}/bin/octave";
|
|
|
|
};
|
2013-06-17 11:38:19 +01:00
|
|
|
|
2021-02-14 06:27:17 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "https://www.gnu.org/software/octave/";
|
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
maintainers = with lib.maintainers; [ raskin doronbehar ];
|
|
|
|
description = "Scientific Pragramming Language";
|
|
|
|
# https://savannah.gnu.org/bugs/?func=detailitem&item_id=56425 is the best attempt to fix JIT
|
|
|
|
broken = enableJIT;
|
|
|
|
platforms = if overridePlatforms == null then
|
|
|
|
(lib.platforms.linux ++ lib.platforms.darwin)
|
|
|
|
else overridePlatforms;
|
|
|
|
};
|
2012-04-12 11:00:18 +01:00
|
|
|
};
|
2021-02-14 06:27:17 +00:00
|
|
|
|
|
|
|
in self
|