mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add Matio.
* gnu/packages/maths.scm (matio): New variable.
This commit is contained in:
parent
00775104ee
commit
6c90e183cf
1 changed files with 22 additions and 0 deletions
|
@ -2328,3 +2328,25 @@ (define-public hypre-openmpi
|
|||
solvers for the solution of large, sparse linear systems of equations on
|
||||
parallel computers. It features parallel multigrid solvers for both
|
||||
structured and unstructured grid problems.")))
|
||||
|
||||
(define-public matio
|
||||
(package
|
||||
(name "matio")
|
||||
(version "1.5.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://sourceforge/matio/" version "/"
|
||||
"matio-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0y2qymgxank8wdiwc68ap8bxdzrhvyw86i29yh3xgn4z1njfd9ir"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("zlib" ,zlib)
|
||||
("hdf5" ,hdf5)))
|
||||
(home-page "http://matio.sourceforge.net/")
|
||||
(synopsis "Library for reading and writing MAT files")
|
||||
(description "Matio is a library for reading and writing MAT files. It
|
||||
supports compressed MAT files, as well as newer (version 7.3) MAT files.")
|
||||
(license license:bsd-2)))
|
||||
|
|
Loading…
Reference in a new issue