nixpkgs/pkgs/development/libraries/haskell/maybench/default.nix
Peter Simons 9be673de5e Added maybench, an automated benchmarking tool. The tool depends on benchpress,
a Haskell library for timed command execution.

For starters, the expression lives in development/libraries/haskell/maybench.
It doesn't really belong there because, though, because, technically, it's an
executable, not a library. If someone has a better idea, please feel free to
move it.

svn path=/nixpkgs/trunk/; revision=12761
2008-08-29 09:05:49 +00:00

13 lines
271 B
Nix

{cabal, benchpress}:
cabal.mkDerivation (self : {
pname = "maybench";
version = "0.2.4";
sha256 = "1g7hby0ffjry60xhs09gf1n848c9n60mjjq7jf94c116x24w1gdd";
meta = {
description = "Automated benchmarking tool.";
};
propagatedBuildInputs = [benchpress];
})