3
0
Fork 0
forked from mirrors/nixpkgs

haskell-benchpress: updated to version 0.2.2.4

svn path=/nixpkgs/trunk/; revision=28301
This commit is contained in:
Peter Simons 2011-08-07 21:59:50 +00:00
parent 6d33e6f8ff
commit c1eb520fef
2 changed files with 12 additions and 7 deletions

View file

@ -1,12 +1,15 @@
{cabal, mtl}:
{cabal, mtl, time} :
cabal.mkDerivation (self : {
pname = "benchpress";
version = "0.2.2";
sha256 = "185j2viimr1vbbgh9havdj2nskim8apih1fyvwln76jfrwypy194";
propagatedBuildInputs = [mtl];
version = "0.2.2.4";
sha256 = "0cabjx0gkbk5blqkm9pmnz8kmi3573367365gny4r3m431iwxgnf";
propagatedBuildInputs = [ mtl time ];
meta = {
description = "Benchmarks actions and produces statistics such as min, mean, and median execution time.";
homepage = "http://github.com/tibbe/benchpress";
description = "Micro-benchmarking with detailed statistics.";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})

View file

@ -374,7 +374,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
baseUnicodeSymbols = callPackage ../development/libraries/haskell/base-unicode-symbols {};
benchpress = callPackage ../development/libraries/haskell/benchpress {};
benchpress = callPackage ../development/libraries/haskell/benchpress {
time = self.time_1_1_3;
};
bimap = callPackage ../development/libraries/haskell/bimap {};