2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, mtl, time }:
|
2008-08-29 11:05:49 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2008-08-29 11:05:49 +02:00
|
|
|
pname = "benchpress";
|
2012-07-26 11:06:46 +02:00
|
|
|
version = "0.2.2.6";
|
|
|
|
sha256 = "19ygaf2g4yqkfbc6bw6fmf9jsymbj1iallzvl0zw3vjx860rchfg";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ mtl time ];
|
2008-08-29 11:05:49 +02:00
|
|
|
meta = {
|
2011-08-07 23:59:50 +02:00
|
|
|
homepage = "http://github.com/tibbe/benchpress";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Micro-benchmarking with detailed statistics";
|
2011-08-07 23:59:50 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 14:57:25 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2008-08-29 11:05:49 +02:00
|
|
|
};
|
|
|
|
})
|