2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, aeson, deepseq, filepath, hastache, mtl, mwcRandom, parsec
|
|
|
|
, statistics, time, transformers, vector, vectorAlgorithms
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2010-11-17 15:38:16 +00:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-11-17 15:38:16 +00:00
|
|
|
pname = "criterion";
|
2012-10-11 09:18:48 +01:00
|
|
|
version = "0.6.2.0";
|
|
|
|
sha256 = "1xd90qb026niq2sn7ks8bn92ifb6255saic68bzg6kzj7ydwwdmx";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
aeson deepseq filepath hastache mtl mwcRandom parsec statistics
|
|
|
|
time transformers vector vectorAlgorithms
|
2010-11-19 19:34:41 +00:00
|
|
|
];
|
2010-11-17 15:38:16 +00:00
|
|
|
meta = {
|
2011-12-02 11:47:08 +00:00
|
|
|
homepage = "https://github.com/bos/criterion";
|
2010-11-17 15:38:16 +00:00
|
|
|
description = "Robust, reliable performance measurement and analysis";
|
2011-08-07 20:33:43 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-11-17 15:38:16 +00:00
|
|
|
};
|
|
|
|
})
|