gnu: octave: Update to 4.0.2.
* gnu/packages/maths.scm (octave): Update to 4.0.2. [inputs]: Added cyrus-sasl, openssl. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
91231156ce
commit
b7b27a8f28
|
@ -11,6 +11,7 @@
|
||||||
;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2015 Fabian Harfert <fhmgufs@web.de>
|
;;; Copyright © 2015 Fabian Harfert <fhmgufs@web.de>
|
||||||
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
|
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
|
||||||
|
;;; Copyright © 2016 Kei Kebreau <kei@openmailbox.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -46,6 +47,7 @@
|
||||||
#:use-module (gnu packages cmake)
|
#:use-module (gnu packages cmake)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages curl)
|
#:use-module (gnu packages curl)
|
||||||
|
#:use-module (gnu packages cyrus-sasl)
|
||||||
#:use-module (gnu packages documentation)
|
#:use-module (gnu packages documentation)
|
||||||
#:use-module (gnu packages elf)
|
#:use-module (gnu packages elf)
|
||||||
#:use-module (gnu packages flex)
|
#:use-module (gnu packages flex)
|
||||||
|
@ -79,6 +81,7 @@
|
||||||
#:use-module (gnu packages tcl)
|
#:use-module (gnu packages tcl)
|
||||||
#:use-module (gnu packages texinfo)
|
#:use-module (gnu packages texinfo)
|
||||||
#:use-module (gnu packages texlive)
|
#:use-module (gnu packages texlive)
|
||||||
|
#:use-module (gnu packages tls)
|
||||||
#:use-module (gnu packages wxwidgets)
|
#:use-module (gnu packages wxwidgets)
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
#:use-module (gnu packages zip)
|
#:use-module (gnu packages zip)
|
||||||
|
@ -583,7 +586,7 @@ online as well as original implementations of various other algorithms.")
|
||||||
(define-public octave
|
(define-public octave
|
||||||
(package
|
(package
|
||||||
(name "octave")
|
(name "octave")
|
||||||
(version "4.0.0")
|
(version "4.0.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -591,7 +594,7 @@ online as well as original implementations of various other algorithms.")
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"101jr9yck798586jz4vkjcgk36zksmxf1pxrzvipgn2xgyay0zjc"))))
|
"1hdxap3j88rpqjimnfhinym6z73wdi5dfa6fv85c13r1dk9qzk9r"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("lapack" ,lapack)
|
`(("lapack" ,lapack)
|
||||||
|
@ -602,6 +605,7 @@ online as well as original implementations of various other algorithms.")
|
||||||
("arpack" ,arpack-ng)
|
("arpack" ,arpack-ng)
|
||||||
("curl" ,curl)
|
("curl" ,curl)
|
||||||
("pcre" ,pcre)
|
("pcre" ,pcre)
|
||||||
|
("cyrus-sasl" ,cyrus-sasl)
|
||||||
("fltk" ,fltk)
|
("fltk" ,fltk)
|
||||||
("fontconfig" ,fontconfig)
|
("fontconfig" ,fontconfig)
|
||||||
("freetype" ,freetype)
|
("freetype" ,freetype)
|
||||||
|
@ -609,6 +613,7 @@ online as well as original implementations of various other algorithms.")
|
||||||
("libxft" ,libxft)
|
("libxft" ,libxft)
|
||||||
("mesa" ,mesa)
|
("mesa" ,mesa)
|
||||||
("glu" ,glu)
|
("glu" ,glu)
|
||||||
|
("openssl" ,openssl)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gfortran" ,gfortran)
|
`(("gfortran" ,gfortran)
|
||||||
|
@ -626,7 +631,8 @@ online as well as original implementations of various other algorithms.")
|
||||||
("ghostscript" ,ghostscript)
|
("ghostscript" ,ghostscript)
|
||||||
("gnuplot" ,gnuplot)))
|
("gnuplot" ,gnuplot)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list (string-append "--with-shell="
|
`(#:configure-flags
|
||||||
|
(list (string-append "--with-shell="
|
||||||
(assoc-ref %build-inputs "bash")
|
(assoc-ref %build-inputs "bash")
|
||||||
"/bin/sh"))))
|
"/bin/sh"))))
|
||||||
(home-page "http://www.gnu.org/software/octave/")
|
(home-page "http://www.gnu.org/software/octave/")
|
||||||
|
|
Loading…
Reference in New Issue