about summary refs log tree commit diff
path: root/pkgs/development/interpreters/octave
diff options
context:
space:
mode:
authorTmplt <tmplt@dragons.rocks>2019-10-08 20:03:27 +0200
committerTmplt <tmplt@dragons.rocks>2019-10-08 20:03:27 +0200
commit62e0c07836f547c00770031deaed8ba76e4b1949 (patch)
tree7a9066c0ef0492131d4e6ce9ea7fc6125ff9a258 /pkgs/development/interpreters/octave
parente14ccd72856ed4e1abad2b9b3a8d655f67313d51 (diff)
downloadnixlib-62e0c07836f547c00770031deaed8ba76e4b1949.tar
nixlib-62e0c07836f547c00770031deaed8ba76e4b1949.tar.gz
nixlib-62e0c07836f547c00770031deaed8ba76e4b1949.tar.bz2
nixlib-62e0c07836f547c00770031deaed8ba76e4b1949.tar.lz
nixlib-62e0c07836f547c00770031deaed8ba76e4b1949.tar.xz
nixlib-62e0c07836f547c00770031deaed8ba76e4b1949.tar.zst
nixlib-62e0c07836f547c00770031deaed8ba76e4b1949.zip
octave: build with gl2ps
Resolves #38459
Diffstat (limited to 'pkgs/development/interpreters/octave')
-rw-r--r--pkgs/development/interpreters/octave/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix
index cc9f6fcc3c90..0a5d92206d9d 100644
--- a/pkgs/development/interpreters/octave/default.nix
+++ b/pkgs/development/interpreters/octave/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchurl, gfortran, readline, ncurses, perl, flex, texinfo, qhull
 , libsndfile, portaudio, libX11, graphicsmagick, pcre, pkgconfig, libGLU_combined, fltk
-, fftw, fftwSinglePrec, zlib, curl, qrupdate, openblas, arpack, libwebp
+, 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
 }:
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ gfortran readline ncurses perl flex texinfo qhull
     graphicsmagick pcre pkgconfig fltk zlib curl openblas libsndfile fftw
-    fftwSinglePrec portaudio qrupdate arpack libwebp ]
+    fftwSinglePrec portaudio qrupdate arpack libwebp gl2ps ]
     ++ (stdenv.lib.optional (qt != null) qt)
     ++ (stdenv.lib.optional (qscintilla != null) qscintilla)
     ++ (stdenv.lib.optional (ghostscript != null) ghostscript)