depot/third_party/nixpkgs/pkgs/development/octave-modules/netcdf/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

26 lines
541 B
Nix

{ buildOctavePackage
, lib
, fetchurl
, netcdf
}:
buildOctavePackage rec {
pname = "netcdf";
version = "1.0.17";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "sha256-uuFD8VNeWbyHFyWMDMzWDd2n+dG9EFmc/JnZU2tx+Uk=";
};
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";
};
}