tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.core_bench: init at 113.33.03
Patrick Mahoney
8 years ago
b6534c69
5e75c735
+23
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
janestreet
core_bench.nix
top-level
ocaml-packages.nix
+20
pkgs/development/ocaml-modules/janestreet/core_bench.nix
···
1
1
+
{ stdenv
2
2
+
, buildOcamlJane
3
3
+
, core
4
4
+
, core_extended
5
5
+
, textutils
6
6
+
}:
7
7
+
8
8
+
buildOcamlJane rec {
9
9
+
name = "core_bench";
10
10
+
hash = "1d1ainpakgsf5rg8dvar12ksgilqcc4465jr8gf7fz5mmn0mlifj";
11
11
+
propagatedBuildInputs =
12
12
+
[ core core_extended textutils ];
13
13
+
14
14
+
meta = with stdenv.lib; {
15
15
+
homepage = https://github.com/janestreet/core_bench;
16
16
+
description = "Micro-benchmarking library for OCaml";
17
17
+
license = licenses.asl20;
18
18
+
maintainers = [ maintainers.pmahoney ];
19
19
+
};
20
20
+
}
+3
pkgs/top-level/ocaml-packages.nix
···
728
728
then callPackage ../development/ocaml-modules/janestreet/bin_prot.nix {}
729
729
else bin_prot_p4;
730
730
731
731
+
core_bench =
732
732
+
callPackage ../development/ocaml-modules/janestreet/core_bench.nix {};
733
733
+
731
734
core_kernel =
732
735
if lib.versionOlder "4.03" ocaml.version
733
736
then callPackage ../development/ocaml-modules/janestreet/core_kernel-113_33_01.nix {}