21 lines
463 B
Nix
21 lines
463 B
Nix
{ stdenv
|
|
, buildOcamlJane
|
|
, core
|
|
, core_extended
|
|
, textutils
|
|
}:
|
|
|
|
buildOcamlJane rec {
|
|
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 ];
|
|
};
|
|
}
|