octave.pkgs.mvn: init at 1.1.0
This commit is contained in:
parent
7a4dc7af1a
commit
3c945d5ea3
21
pkgs/development/octave-modules/mvn/default.nix
Normal file
21
pkgs/development/octave-modules/mvn/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ buildOctavePackage
|
||||
, lib
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
buildOctavePackage rec {
|
||||
pname = "mvn";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||
sha256 = "00w69hxqnqdm3744z6p7gvzci44a3gy228x6bgq3xf5n3jwicnmg";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://octave.sourceforge.io/mvn/index.html";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ KarlJoad ];
|
||||
description = "Multivariate normal distribution clustering and utility functions";
|
||||
};
|
||||
}
|
@ -145,6 +145,8 @@ makeScope newScope (self:
|
||||
dolfin = null;
|
||||
};
|
||||
|
||||
mvn = callPackage ../development/octave-modules/mvn { };
|
||||
|
||||
signal = callPackage ../development/octave-modules/signal { };
|
||||
|
||||
symbolic = callPackage ../development/octave-modules/symbolic {
|
||||
|
Loading…
Reference in New Issue
Block a user