about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-06-15 13:50:10 +0100
committerGitHub <noreply@github.com>2017-06-15 13:50:10 +0100
commita3539d0dbcbf750e1193657879f1a93a502337ac (patch)
tree91bb7355e2a5ecfd61a6ff91741941dc023636d3 /pkgs/development/ocaml-modules
parent72c36db003aa8ccebd7e5e673e5644f89cb45631 (diff)
parentb6534c694d3849649388df7bb6fb0a7dab9d96e1 (diff)
downloadnixlib-a3539d0dbcbf750e1193657879f1a93a502337ac.tar
nixlib-a3539d0dbcbf750e1193657879f1a93a502337ac.tar.gz
nixlib-a3539d0dbcbf750e1193657879f1a93a502337ac.tar.bz2
nixlib-a3539d0dbcbf750e1193657879f1a93a502337ac.tar.lz
nixlib-a3539d0dbcbf750e1193657879f1a93a502337ac.tar.xz
nixlib-a3539d0dbcbf750e1193657879f1a93a502337ac.tar.zst
nixlib-a3539d0dbcbf750e1193657879f1a93a502337ac.zip
Merge pull request #26126 from pmahoney/ocaml-core_bench
ocamlPackages.core_bench: init at 113.33.03
Diffstat (limited to 'pkgs/development/ocaml-modules')
-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 ];
+  };
+}