nixpkgs/pkgs/development/octave-modules/mvn/default.nix
2021-02-24 21:00:50 +02:00

22 lines
529 B
Nix

{ 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";
};
}