9be673de5e
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
13 lines
271 B
Nix
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];
|
|
})
|
|
|