2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, mtl, time }:
|
2008-08-29 09:05:49 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2008-08-29 09:05:49 +00:00
|
|
|
pname = "benchpress";
|
2011-08-07 21:59:50 +00:00
|
|
|
version = "0.2.2.4";
|
|
|
|
sha256 = "0cabjx0gkbk5blqkm9pmnz8kmi3573367365gny4r3m431iwxgnf";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ mtl time ];
|
2012-07-18 09:43:33 +00:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i -e 's|base .*,|base,|' -e 's|mtl .*,|mtl,|' benchpress.cabal
|
|
|
|
'';
|
2008-08-29 09:05:49 +00:00
|
|
|
meta = {
|
2011-08-07 21:59:50 +00:00
|
|
|
homepage = "http://github.com/tibbe/benchpress";
|
2011-08-11 13:03:51 +00:00
|
|
|
description = "Micro-benchmarking with detailed statistics";
|
2011-08-07 21:59:50 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2008-08-29 09:05:49 +00:00
|
|
|
};
|
|
|
|
})
|