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