octave.pkgs.statistics: init at 1.4.2

This commit is contained in:
Karl Hallsby 2021-01-06 12:07:32 -06:00 committed by Doron Behar
parent 545804e2e0
commit 57c8919083
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ buildOctavePackage
, lib
, fetchurl
, io
}:
buildOctavePackage rec {
pname = "statistics";
version = "1.4.2";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "0iv2hw3zp7h69n8ncfjfgm29xaihdl5gp2slcw1yf23mhd7q2xkr";
};
requiredOctavePackages = [
io
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/statistics/index.html";
license = with licenses; [ gpl3Plus publicDomain ];
maintainers = with maintainers; [ KarlJoad ];
description = "Additional statistics functions for Octave";
};
}

View file

@ -189,6 +189,8 @@ makeScope newScope (self:
splines = callPackage ../development/octave-modules/splines { };
statistics = callPackage ../development/octave-modules/statistics { };
struct = callPackage ../development/octave-modules/struct { };
symbolic = callPackage ../development/octave-modules/symbolic {