about summary refs log tree commit diff
path: root/pkgs/development/octave-modules/netcdf/default.nix
blob: b2b7eeda42e928294df796ee157dba80a9e52aa0 (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
{ buildOctavePackage
, lib
, fetchurl
, netcdf
}:

buildOctavePackage rec {
  pname = "netcdf";
  version = "1.0.16";

  src = fetchurl {
    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
    sha256 = "sha256-1Lr+6xLRXxSeUhM9+WdCUPFRZSWdxtAQlxpiv4CHJrs=";
  };

  buildInputs = [
    netcdf
  ];

  meta = with lib; {
    homepage = "https://octave.sourceforge.io/netcdf/index.html";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ KarlJoad ];
    description = "NetCDF interface for Octave";
  };
}