about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/benchpress/default.nix
blob: 6ccc033f02e9db65f90076a6e1131bfcca2ce697 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, mtl}:

cabal.mkDerivation (self : {
  pname = "benchpress";
  version = "0.2.2";
  sha256 = "185j2viimr1vbbgh9havdj2nskim8apih1fyvwln76jfrwypy194";
  propagatedBuildInputs = [mtl];
  meta = {
    description = "Benchmarks actions and produces statistics such as min, mean, and median execution time.";
  };
})