summary refs log tree commit diff
path: root/pkgs/development/libraries/grib-api/default.nix
blob: ee505b54e7e29687d7d1e6c1c990c971efb718f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ fetchurl, stdenv, curl,
  netcdf, jasper, openjpeg }:

stdenv.mkDerivation rec{
  name = "grib-api-${version}";
  version = "1.14.4";

  src = fetchurl {
    url = https://software.ecmwf.int/wiki/download/attachments/3473437/grib_api-1.14.4-Source.tar.gz;
    sha256 = "1w8z9y79wakhwv1r4rb4dwlh9pbyw367klcm6laxz91hhvfrpfq8";
  };

  buildInputs = [ netcdf
                  jasper
                  openjpeg
                  curl     # Used for downloading during make test
                ];
  doCheck = true;

  meta = with stdenv.lib; {
    homepage = "https://software.ecmwf.int/wiki/display/GRIB/Home";
    license = licenses.asl20;
    description = "ECMWF Library for the GRIB file format";
    longDescription = ''
      The ECMWF GRIB API is an application program interface accessible from C,
      FORTRAN and Python programs developed for encoding and decoding WMO FM-92
      GRIB edition 1 and edition 2 messages.
    '';

  };
}