mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: hdf5: Distinguish the default hdf5 version.
* gnu/packages/maths.scm (hdf5): Rename to... (hdf-1.8): ... this. (hdf5-1.10): Adjust accordingly. (hdf5): New variable.
This commit is contained in:
parent
4c5edee1ef
commit
3b8eea1c40
1 changed files with 6 additions and 2 deletions
|
@ -1053,7 +1053,7 @@ (define-public hdf4-alt
|
||||||
(synopsis
|
(synopsis
|
||||||
"HDF4 without netCDF API, can be combined with the regular netCDF library")))
|
"HDF4 without netCDF API, can be combined with the regular netCDF library")))
|
||||||
|
|
||||||
(define-public hdf5
|
(define-public hdf5-1.8
|
||||||
(package
|
(package
|
||||||
(name "hdf5")
|
(name "hdf5")
|
||||||
(version "1.8.21")
|
(version "1.8.21")
|
||||||
|
@ -1181,7 +1181,7 @@ (define-public hdf5
|
||||||
"https://www.hdfgroup.org/ftp/HDF5/current/src/unpacked/COPYING"))))
|
"https://www.hdfgroup.org/ftp/HDF5/current/src/unpacked/COPYING"))))
|
||||||
|
|
||||||
(define-public hdf5-1.10
|
(define-public hdf5-1.10
|
||||||
(package (inherit hdf5)
|
(package (inherit hdf5-1.8)
|
||||||
(version "1.10.6")
|
(version "1.10.6")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
|
@ -1199,6 +1199,10 @@ (define-public hdf5-1.10
|
||||||
(base32 "1gf38x51128hn00744358w27xgzjk0ff4wra4yxh2lk804ck1mh9"))
|
(base32 "1gf38x51128hn00744358w27xgzjk0ff4wra4yxh2lk804ck1mh9"))
|
||||||
(patches (search-patches "hdf5-config-date.patch"))))))
|
(patches (search-patches "hdf5-config-date.patch"))))))
|
||||||
|
|
||||||
|
(define-public hdf5
|
||||||
|
;; Default version of HDF5.
|
||||||
|
hdf5-1.8)
|
||||||
|
|
||||||
(define-public hdf-java
|
(define-public hdf-java
|
||||||
(package
|
(package
|
||||||
(name "hdf-java")
|
(name "hdf-java")
|
||||||
|
|
Loading…
Reference in a new issue