2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, aeson, deepseq, filepath, hastache, mtl, mwcRandom, parsec
|
|
|
|
, statistics, time, transformers, vector, vectorAlgorithms
|
2011-08-09 23:00:20 +00:00
|
|
|
}:
|
2010-11-17 15:38:16 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2010-11-17 15:38:16 +00:00
|
|
|
pname = "criterion";
|
2013-02-04 12:40:28 +00:00
|
|
|
version = "0.6.2.1";
|
|
|
|
sha256 = "08gbs61qqsq0kh2r33kzm9mmbs3ar5krmp1a0cf21c012k6k55z5";
|
2011-08-09 23:00:20 +00: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 19:33:43 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-11-17 15:38:16 +00:00
|
|
|
};
|
|
|
|
})
|