nixpkgs/pkgs/development/interpreters/octave/default.nix

75 lines
2.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull
, libX11, graphicsmagick, pcre, pkgconfig, mesa, fltk
, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas
2014-08-21 04:08:19 +04:00
, qt ? null, qscintilla ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null
, suitesparse ? null, gnuplot ? null, jdk ? null, python ? null
2014-01-07 22:02:01 +04:00
}:
let
suitesparseOrig = suitesparse;
qrupdateOrig = qrupdate;
in
# integer width is determined by openblas, so all dependencies must be built
# with exactly the same openblas
let
suitesparse =
if suitesparseOrig != null then suitesparseOrig.override { inherit openblas; } else null;
qrupdate = if qrupdateOrig != null then qrupdateOrig.override { inherit openblas; } else null;
in
stdenv.mkDerivation rec {
2015-05-31 11:01:51 +03:00
version = "4.0.0";
2013-06-17 14:38:19 +04:00
name = "octave-${version}";
src = fetchurl {
2015-05-31 11:01:51 +03:00
url = "mirror://gnu/octave/${name}.tar.xz";
sha256 = "0x64b2lna4vrlm4wwx6h1qdlmki6s2b9q90yjxldlvvrqvxf4syg";
};
buildInputs = [ gfortran readline ncurses perl flex texinfo qhull libX11
graphicsmagick pcre pkgconfig mesa fltk zlib curl openblas
2014-01-07 22:02:01 +04:00
fftw fftwSinglePrec qrupdate ]
++ (stdenv.lib.optional (qt != null) qt)
2014-08-21 04:08:19 +04:00
++ (stdenv.lib.optional (qscintilla != null) qscintilla)
2014-01-07 22:02:01 +04:00
++ (stdenv.lib.optional (ghostscript != null) ghostscript)
++ (stdenv.lib.optional (llvm != null) llvm)
++ (stdenv.lib.optional (hdf5 != null) hdf5)
++ (stdenv.lib.optional (glpk != null) glpk)
++ (stdenv.lib.optional (suitesparse != null) suitesparse)
++ (stdenv.lib.optional (jdk != null) jdk)
2014-01-07 22:02:01 +04:00
++ (stdenv.lib.optional (gnuplot != null) gnuplot)
++ (stdenv.lib.optional (python != null) python)
;
2014-01-07 01:00:03 +04:00
# there is a mysterious sh: command not found
doCheck = false;
# problems on Hydra
enableParallelBuilding = false;
configureFlags =
[ "--enable-readline"
"--enable-dl"
"--with-blas=openblas"
"--with-lapack=openblas"
]
++ stdenv.lib.optional openblas.blas64 "--enable-64";
# 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/${name}-fntests.log || true
'';
2013-06-17 14:38:19 +04:00
passthru = {
inherit version;
sitePath = "share/octave/${version}/site";
};
meta = {
homepage = http://octave.org/;
license = stdenv.lib.licenses.gpl3Plus;
2014-01-07 22:02:01 +04:00
maintainers = with stdenv.lib.maintainers; [viric raskin];
platforms = with stdenv.lib.platforms; linux;
};
}