mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add netcdf-fortran.
* gnu/packages/maths.scm (netcdf-fortran): New variable.
This commit is contained in:
parent
06be316111
commit
300200b637
1 changed files with 24 additions and 0 deletions
|
@ -850,6 +850,30 @@ sharing of scientific data.")
|
|||
"--disable-shared" "--with-pic"
|
||||
,flags))))))
|
||||
|
||||
(define-public netcdf-fortran
|
||||
(package
|
||||
(name "netcdf-fortran")
|
||||
(version "4.4.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-fortran-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0xaxdcg1p83zmypwml3swsnr3ccn38inwldyr1l3wa4dbwbrblxj"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:parallel-tests? #f))
|
||||
(inputs
|
||||
`(("netcdf" ,netcdf)))
|
||||
(native-inputs
|
||||
`(("gfortran" ,gfortran)))
|
||||
(synopsis "Fortran interface for the netCDF library")
|
||||
(description (package-description netcdf))
|
||||
(home-page (package-home-page netcdf))
|
||||
(license (package-license netcdf))))
|
||||
|
||||
(define-public nlopt
|
||||
(package
|
||||
(name "nlopt")
|
||||
|
|
Loading…
Reference in a new issue