mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
haskell-statistics: drop obsolete version 0.10.5.2
This commit is contained in:
parent
fc51c1d163
commit
ee1a03577c
3 changed files with 1 additions and 34 deletions
|
@ -1,28 +0,0 @@
|
|||
{ cabal, binary, deepseq, erf, HUnit, ieee754, mathFunctions
|
||||
, monadPar, mwcRandom, primitive, QuickCheck, testFramework
|
||||
, testFrameworkHunit, testFrameworkQuickcheck2, vector
|
||||
, vectorAlgorithms, vectorBinaryInstances
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "statistics";
|
||||
version = "0.10.5.2";
|
||||
sha256 = "13wbxz83ci78k41c6swyiwi82rikm9i9vwjwj3d3w327xs59bvvy";
|
||||
buildDepends = [
|
||||
binary deepseq erf mathFunctions monadPar mwcRandom primitive
|
||||
vector vectorAlgorithms vectorBinaryInstances
|
||||
];
|
||||
testDepends = [
|
||||
erf HUnit ieee754 mathFunctions mwcRandom primitive QuickCheck
|
||||
testFramework testFrameworkHunit testFrameworkQuickcheck2 vector
|
||||
vectorAlgorithms
|
||||
];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://github.com/bos/statistics";
|
||||
description = "A library of statistical types, data, and functions";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||||
};
|
||||
})
|
|
@ -2368,15 +2368,10 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
StateVar = callPackage ../development/libraries/haskell/StateVar {};
|
||||
|
||||
statistics_0_10_5_2 = callPackage ../development/libraries/haskell/statistics/0.10.5.2.nix {
|
||||
statistics = callPackage ../development/libraries/haskell/statistics {
|
||||
binary = self.binary_0_7_1_0;
|
||||
vectorBinaryInstances = self.vectorBinaryInstances.override { binary = self.binary_0_7_1_0; };
|
||||
};
|
||||
statistics_0_11_0_0 = callPackage ../development/libraries/haskell/statistics/0.11.0.0.nix {
|
||||
binary = self.binary_0_7_1_0;
|
||||
vectorBinaryInstances = self.vectorBinaryInstances.override { binary = self.binary_0_7_1_0; };
|
||||
};
|
||||
statistics = self.statistics_0_10_5_2;
|
||||
|
||||
statvfs = callPackage ../development/libraries/haskell/statvfs {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue