about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet
diff options
context:
space:
mode:
authorPatrick Mahoney <pat@polycrystal.org>2017-05-22 09:48:29 -0500
committerPatrick Mahoney <pat@polycrystal.org>2017-05-22 10:30:00 -0500
commitb6534c694d3849649388df7bb6fb0a7dab9d96e1 (patch)
tree1e55e5db1e6c62134a33177fd26333962351f152 /pkgs/development/ocaml-modules/janestreet
parent5e75c7355919c11640865d1cad15befd6e03f9e8 (diff)
downloadnixlib-b6534c694d3849649388df7bb6fb0a7dab9d96e1.tar
nixlib-b6534c694d3849649388df7bb6fb0a7dab9d96e1.tar.gz
nixlib-b6534c694d3849649388df7bb6fb0a7dab9d96e1.tar.bz2
nixlib-b6534c694d3849649388df7bb6fb0a7dab9d96e1.tar.lz
nixlib-b6534c694d3849649388df7bb6fb0a7dab9d96e1.tar.xz
nixlib-b6534c694d3849649388df7bb6fb0a7dab9d96e1.tar.zst
nixlib-b6534c694d3849649388df7bb6fb0a7dab9d96e1.zip
ocamlPackages.core_bench: init at 113.33.03
Diffstat (limited to 'pkgs/development/ocaml-modules/janestreet')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/core_bench.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/core_bench.nix b/pkgs/development/ocaml-modules/janestreet/core_bench.nix
new file mode 100644
index 000000000000..83e6100f0597
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/core_bench.nix
@@ -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 ];
+  };
+}