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-01-24 16:06:11 +01:00
|
|
|
version = "0.6.0.1";
|
|
|
|
sha256 = "0k6ip41w5h1z8gl67a8vsb6c3md5nc4yh1vd6dysp9fqgn0vky0a";
|
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
|
|
|
};
|
|
|
|
})
|