mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
* Added Statistics::TTest.
svn path=/nixpkgs/trunk/; revision=29507
This commit is contained in:
parent
e3ccdb4bcd
commit
a3143f0bbd
|
@ -2817,6 +2817,23 @@ rec {
|
|||
};
|
||||
};
|
||||
|
||||
StatisticsDistributions = buildPerlPackage rec {
|
||||
name = "Statistics-Distributions-1.02";
|
||||
src = fetchurl {
|
||||
url = "mirror://cpan/modules/by-module/Statistics/${name}.tar.gz";
|
||||
sha256 = "1j1kswl98f4i9dn176f9aa3y9bissx2sscga5jm3gjl4pxm3k7zr";
|
||||
};
|
||||
};
|
||||
|
||||
StatisticsTTest = buildPerlPackage rec {
|
||||
name = "Statistics-TTest-1.1.0";
|
||||
src = fetchurl {
|
||||
url = "mirror://cpan/modules/by-module/Statistics/${name}.tar.gz";
|
||||
sha256 = "0rkifgzm4rappiy669dyi6lyxn2sdqaf0bl6gndlfa67b395kndj";
|
||||
};
|
||||
propagatedBuildInputs = [ StatisticsDescriptive StatisticsDistributions ];
|
||||
};
|
||||
|
||||
StringFormat = buildPerlPackage rec {
|
||||
name = "String-Format-1.16";
|
||||
src = fetchurl {
|
||||
|
|
Loading…
Reference in a new issue