octave.pkgs.ncarray: init at 1.0.4
This commit is contained in:
parent
e59d49eb32
commit
7321def414
2 changed files with 33 additions and 0 deletions
31
pkgs/development/octave-modules/ncarray/default.nix
Normal file
31
pkgs/development/octave-modules/ncarray/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ buildOctavePackage
|
||||
, lib
|
||||
, fetchurl
|
||||
, netcdf
|
||||
, statistics
|
||||
}:
|
||||
|
||||
buildOctavePackage rec {
|
||||
pname = "ncarray";
|
||||
version = "1.0.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||
sha256 = "0v96iziikvq2v7hczhbfs9zmk49v99kn6z3lgibqqpwam175yqgd";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
netcdf
|
||||
];
|
||||
|
||||
requiredOctavePackages = [
|
||||
statistics
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://octave.sourceforge.io/ncarray/index.html";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ KarlJoad ];
|
||||
description = "Access a single or a collection of NetCDF files as a multi-dimensional array";
|
||||
};
|
||||
}
|
|
@ -149,6 +149,8 @@ makeScope newScope (self:
|
|||
|
||||
nan = callPackage ../development/octave-modules/nan { };
|
||||
|
||||
ncarray = callPackage ../development/octave-modules/ncarray { };
|
||||
|
||||
signal = callPackage ../development/octave-modules/signal { };
|
||||
|
||||
symbolic = callPackage ../development/octave-modules/symbolic {
|
||||
|
|
Loading…
Reference in a new issue