2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, aeson, deepseq, filepath, hastache, mtl, mwcRandom, parsec
|
|
|
|
, statistics, time, transformers, vector, vectorAlgorithms
|
2011-08-09 16:00:20 -07:00
|
|
|
}:
|
2010-11-17 07:38:16 -08:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2010-11-17 07:38:16 -08:00
|
|
|
pname = "criterion";
|
2013-02-04 04:40:28 -08:00
|
|
|
version = "0.6.2.1";
|
|
|
|
sha256 = "08gbs61qqsq0kh2r33kzm9mmbs3ar5krmp1a0cf21c012k6k55z5";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2012-02-16 06:05:41 -08:00
|
|
|
aeson deepseq filepath hastache mtl mwcRandom parsec statistics
|
|
|
|
time transformers vector vectorAlgorithms
|
2010-11-19 11:34:41 -08:00
|
|
|
];
|
2010-11-17 07:38:16 -08:00
|
|
|
meta = {
|
2011-12-02 03:47:08 -08:00
|
|
|
homepage = "https://github.com/bos/criterion";
|
2010-11-17 07:38:16 -08:00
|
|
|
description = "Robust, reliable performance measurement and analysis";
|
2011-08-07 12:33:43 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 06:57:25 -07:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-11-17 07:38:16 -08:00
|
|
|
};
|
|
|
|
})
|