summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters/octave
diff options
context:
space:
mode:
authorMichal Rus <m@michalrus.com>2016-11-07 00:20:32 +0100
committerMichal Rus <m@michalrus.com>2016-11-07 00:26:56 +0100
commit91d6779b96999b0919448b93715445c4a3a85f16 (patch)
treeef06a3cc08ab03f0e8460d3428a6007db0b382f2 /pkgs/development/interpreters/octave
parentb1df5bf89b641f4e7f7538e460df69ee177dfa7b (diff)
octave: 4.0.1 → 4.0.3 (+ portaudio dep)
Diffstat (limited to 'pkgs/development/interpreters/octave')
-rw-r--r--pkgs/development/interpreters/octave/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix
index df443cdc3e18..226f819ded93 100644
--- a/pkgs/development/interpreters/octave/default.nix
+++ b/pkgs/development/interpreters/octave/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull
-, libsndfile, libX11, graphicsmagick, pcre, pkgconfig, mesa, fltk
+, libsndfile, portaudio, libX11, graphicsmagick, pcre, pkgconfig, mesa, fltk
, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas, arpack, libwebp
, qt ? null, qscintilla ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null
, suitesparse ? null, gnuplot ? null, jdk ? null, python ? null, overridePlatforms ? null
@@ -18,16 +18,16 @@ let
in
stdenv.mkDerivation rec {
- version = "4.0.1";
+ version = "4.0.3";
name = "octave-${version}";
src = fetchurl {
url = "mirror://gnu/octave/${name}.tar.xz";
- sha256 = "11y2w6jgngj4rxiy136mkcs02l52rxk60kapyfc4rgrxz5hli3ym";
+ sha256 = "11day29k4yfvxh4101x5yf26ld992x5n6qvmhjjk6mzsd26fqayw";
};
buildInputs = [ gfortran readline ncurses perl flex texinfo qhull
graphicsmagick pcre pkgconfig fltk zlib curl openblas libsndfile fftw
- fftwSinglePrec qrupdate arpack libwebp ]
+ fftwSinglePrec portaudio qrupdate arpack libwebp ]
++ (stdenv.lib.optional (qt != null) qt)
++ (stdenv.lib.optional (qscintilla != null) qscintilla)
++ (stdenv.lib.optional (ghostscript != null) ghostscript)