2013-05-30 10:01:47 +01:00
|
|
|
{ cabal, aeson, binary, deepseq, filepath, Glob, hastache, mtl
|
2014-04-10 11:56:29 +01:00
|
|
|
, mwcRandom, parsec, statistics, text, time, transformers, vector
|
2013-05-30 10:01:47 +01:00
|
|
|
, 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";
|
2014-04-10 11:56:29 +01:00
|
|
|
version = "0.8.0.2";
|
|
|
|
sha256 = "126c3i9i88wqs5ihif4kpsc1gdqas57acd8h5jbyfqhgbwi1s7gz";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2013-05-30 10:01:47 +01:00
|
|
|
aeson binary deepseq filepath Glob hastache mtl mwcRandom parsec
|
2014-04-10 11:56:29 +01:00
|
|
|
statistics text 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;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-11-17 15:38:16 +00:00
|
|
|
};
|
|
|
|
})
|