gnu: octave: Update to 4.2.0.
* gnu/packages/maths.scm (octave): Update to 4.2.0. [native-inputs]: Add lzip. [home-page]: Use https.
This commit is contained in:
parent
fccab9931c
commit
f5a077b10f
|
@ -891,15 +891,15 @@ can solve two kinds of problems:
|
||||||
(define-public octave
|
(define-public octave
|
||||||
(package
|
(package
|
||||||
(name "octave")
|
(name "octave")
|
||||||
(version "4.0.3")
|
(version "4.2.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/octave/octave-"
|
(uri (string-append "mirror://gnu/octave/octave-"
|
||||||
version ".tar.xz"))
|
version ".tar.lz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"11day29k4yfvxh4101x5yf26ld992x5n6qvmhjjk6mzsd26fqayw"))))
|
"19vvliwxgip0af812vny5xy5r8kacyj7v62203mh4z2n3p14b78i"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("lapack" ,lapack)
|
`(("lapack" ,lapack)
|
||||||
|
@ -918,7 +918,8 @@ can solve two kinds of problems:
|
||||||
("glu" ,glu)
|
("glu" ,glu)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gfortran" ,gfortran)
|
`(("lzip" ,lzip)
|
||||||
|
("gfortran" ,gfortran)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
("perl" ,perl)
|
("perl" ,perl)
|
||||||
;; The following inputs are not actually used in the build process.
|
;; The following inputs are not actually used in the build process.
|
||||||
|
@ -937,7 +938,7 @@ can solve two kinds of problems:
|
||||||
(list (string-append "--with-shell="
|
(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 "https://www.gnu.org/software/octave/")
|
||||||
(synopsis "High-level language for numerical computation")
|
(synopsis "High-level language for numerical computation")
|
||||||
(description "GNU Octave is a high-level interpreted language that is
|
(description "GNU Octave is a high-level interpreted language that is
|
||||||
specialized for numerical computations. It can be used for both linear and
|
specialized for numerical computations. It can be used for both linear and
|
||||||
|
|
Loading…
Reference in New Issue