summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-13 18:38:45 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:34 -0400
commita89dfb2148586b2ece4604d31c377ac4bfab76d0 (patch)
treed32917b7b94e83b8e2d317ea42217e9ac007249d /pkgs/development/ocaml-modules
parentb86e0ad4986c12d6431e53a542e4b1243b564213 (diff)
downloadnixlib-a89dfb2148586b2ece4604d31c377ac4bfab76d0.tar
nixlib-a89dfb2148586b2ece4604d31c377ac4bfab76d0.tar.gz
nixlib-a89dfb2148586b2ece4604d31c377ac4bfab76d0.tar.bz2
nixlib-a89dfb2148586b2ece4604d31c377ac4bfab76d0.tar.lz
nixlib-a89dfb2148586b2ece4604d31c377ac4bfab76d0.tar.xz
nixlib-a89dfb2148586b2ece4604d31c377ac4bfab76d0.tar.zst
nixlib-a89dfb2148586b2ece4604d31c377ac4bfab76d0.zip
ppx_assert: init at 113.33.03
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-assert.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-assert.nix b/pkgs/development/ocaml-modules/janestreet/ppx-assert.nix
new file mode 100644
index 000000000000..e42bc80e9dd2
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-assert.nix
@@ -0,0 +1,16 @@
+{stdenv, buildOcamlJane,
+ ppx_compare, ppx_core, ppx_driver, ppx_here, ppx_sexp_conv, ppx_tools, ppx_type_conv, sexplib}:
+
+buildOcamlJane rec {
+  name = "ppx_assert";
+  hash = "0n7fa1j79ykbkhp8xz0ksg5096asri5d0msshsaqhw5fz18chvz4";
+  propagatedBuildInputs =
+    [ ppx_compare ppx_core ppx_driver ppx_here ppx_sexp_conv ppx_tools
+      ppx_type_conv sexplib ];
+
+  meta = with stdenv.lib; {
+    description = "Assert-like extension nodes that raise useful errors on failure.";
+    maintainers = [ maintainers.maurer ];
+    license = licenses.asl20;
+  };
+}