summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet/core_bench.nix
blob: 1956a7f3b70573e66cd5033b8e3c7af602d5f12d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv
, buildOcamlJane
, core
, core_extended
, textutils
}:

buildOcamlJane {
  name = "core_bench";
  hash = "1d1ainpakgsf5rg8dvar12ksgilqcc4465jr8gf7fz5mmn0mlifj";
  propagatedBuildInputs =
    [ core core_extended textutils ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/janestreet/core_bench";
    description = "Micro-benchmarking library for OCaml";
    license = licenses.asl20;
    maintainers = [ maintainers.pmahoney ];
  };
}