about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2020-02-11 22:45:30 +0200
committerDoron Behar <doron.behar@gmail.com>2020-02-22 12:33:58 +0200
commitb74fe1a248915c0b4d3a863cb97e1c9f953a9928 (patch)
tree454660e7ad331c4bf8f51ddb46912276f664bf90 /pkgs/development/interpreters
parent0df00a6cebb02086db5bca5c317e3ddbc3addf8c (diff)
downloadnixlib-b74fe1a248915c0b4d3a863cb97e1c9f953a9928.tar
nixlib-b74fe1a248915c0b4d3a863cb97e1c9f953a9928.tar.gz
nixlib-b74fe1a248915c0b4d3a863cb97e1c9f953a9928.tar.bz2
nixlib-b74fe1a248915c0b4d3a863cb97e1c9f953a9928.tar.lz
nixlib-b74fe1a248915c0b4d3a863cb97e1c9f953a9928.tar.xz
nixlib-b74fe1a248915c0b4d3a863cb97e1c9f953a9928.tar.zst
nixlib-b74fe1a248915c0b4d3a863cb97e1c9f953a9928.zip
octave: order arguments at top and import qt5 libs
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/octave/default.nix52
1 files changed, 47 insertions, 5 deletions
diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix
index f0f80f758548..28fcf4dd6ff0 100644
--- a/pkgs/development/interpreters/octave/default.nix
+++ b/pkgs/development/interpreters/octave/default.nix
@@ -1,8 +1,50 @@
-{ stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull
-, libsndfile, portaudio, libX11, graphicsmagick, pcre, pkgconfig, libGL, libGLU, fltk
-, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas, arpack, libwebp, gl2ps
-, qt ? null, qscintilla ? null, ghostscript ? null, llvm ? null, hdf5 ? null,glpk ? null
-, suitesparse ? null, gnuplot ? null, jdk ? null, python ? null, overridePlatforms ? null
+{ stdenv
+, fetchurl
+, gfortran
+, readline
+, ncurses
+, perl
+, flex
+, texinfo
+, qhull
+, libsndfile
+, portaudio
+, libX11
+, graphicsmagick
+, pcre
+, pkgconfig
+, libGL
+, libGLU
+, fltk
+# Both are needed for discrete Fourier transform
+, fftw
+, fftwSinglePrec
+, zlib
+, curl
+, qrupdate
+, openblas
+, arpack
+, libwebp
+, gl2ps
+, ghostscript ? null
+, hdf5 ? null
+, glpk ? null
+, suitesparse ? null
+, gnuplot ? null
+, jdk ? null
+, python ? null
+, overridePlatforms ? null
+, sundials ? null
+# Qt / GUI is disabled by default
+, enableQt ? false
+, qtbase ? null
+, qtsvg ? null
+, qtscript ? null
+, qscintilla ? null
+, qttools ? null
+# JIT is disabled by default
+, enableJIT ? false
+, llvm ? null
 }:
 
 let