nixpkgs/pkgs/development/octave-modules/netcdf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
543 B
Nix
Raw Normal View History

2021-01-06 18:30:09 +01:00
{ buildOctavePackage
, lib
, fetchurl
, netcdf
}:
buildOctavePackage rec {
pname = "netcdf";
version = "1.0.16";
2021-01-06 18:30:09 +01:00
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "sha256-1Lr+6xLRXxSeUhM9+WdCUPFRZSWdxtAQlxpiv4CHJrs=";
2021-01-06 18:30:09 +01:00
};
buildInputs = [
netcdf
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/netcdf/index.html";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "A NetCDF interface for Octave";
};
}