mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
ocamlPackages.core_bench: init at 113.33.03
This commit is contained in:
parent
5e75c73559
commit
b6534c694d
2 changed files with 23 additions and 0 deletions
20
pkgs/development/ocaml-modules/janestreet/core_bench.nix
Normal file
20
pkgs/development/ocaml-modules/janestreet/core_bench.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -728,6 +728,9 @@ let
|
|||
then callPackage ../development/ocaml-modules/janestreet/bin_prot.nix {}
|
||||
else bin_prot_p4;
|
||||
|
||||
core_bench =
|
||||
callPackage ../development/ocaml-modules/janestreet/core_bench.nix {};
|
||||
|
||||
core_kernel =
|
||||
if lib.versionOlder "4.03" ocaml.version
|
||||
then callPackage ../development/ocaml-modules/janestreet/core_kernel-113_33_01.nix {}
|
||||
|
|
Loading…
Reference in a new issue