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

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

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