2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchurl, netcdf, hdf5, curl, gfortran }:
|
2016-03-25 15:09:51 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "netcdf-fortran";
|
2019-01-17 08:50:03 +01:00
|
|
|
version = "4.4.5";
|
2016-03-25 15:09:51 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/Unidata/netcdf-fortran/archive/v${version}.tar.gz";
|
2019-01-17 08:50:03 +01:00
|
|
|
sha256 = "00qwg4v250yg8kxp68srrnvfbfim241fnlm071p9ila2mihk8r01";
|
2016-03-25 15:09:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ netcdf hdf5 curl gfortran ];
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2016-03-25 15:09:51 +01:00
|
|
|
description = "Fortran API to manipulate netcdf files";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.unidata.ucar.edu/software/netcdf/";
|
2016-11-20 18:05:18 +01:00
|
|
|
license = licenses.free;
|
|
|
|
maintainers = [ maintainers.bzizou ];
|
|
|
|
platforms = platforms.unix;
|
2016-03-25 15:09:51 +01:00
|
|
|
};
|
|
|
|
}
|