octave.pkgs.divand: init at 1.1.2
This commit is contained in:
parent
0de6cfa38a
commit
74944461e8
2 changed files with 23 additions and 0 deletions
21
pkgs/development/octave-modules/divand/default.nix
Normal file
21
pkgs/development/octave-modules/divand/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ buildOctavePackage
|
||||
, lib
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
buildOctavePackage rec {
|
||||
pname = "divand";
|
||||
version = "1.1.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||
sha256 = "0nmaz5j37dflz7p4a4lmwzkh7g1gghdh7ccvkbyy0fpgv9lr1amg";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://octave.sourceforge.io/divand/index.html";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ KarlJoad ];
|
||||
description = "Performs an n-dimensional variational analysis (interpolation) of arbitrarily located observations";
|
||||
};
|
||||
}
|
|
@ -77,6 +77,8 @@ makeScope newScope (self:
|
|||
|
||||
dicom = callPackage ../development/octave-modules/dicom { };
|
||||
|
||||
divand = callPackage ../development/octave-modules/divand { };
|
||||
|
||||
general = callPackage ../development/octave-modules/general {
|
||||
nettle = pkgs.nettle;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue