octave.pkgs.statistics: init at 1.4.2
This commit is contained in:
parent
545804e2e0
commit
57c8919083
|
@ -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";
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue