about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-13 18:40:51 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:34 -0400
commitd537a83811d7e3969fac257ad2e0412d91ffb3e8 (patch)
tree3fa83ea1eb8ad97d6e9cc809049c739763927006 /pkgs/development
parenta89dfb2148586b2ece4604d31c377ac4bfab76d0 (diff)
downloadnixlib-d537a83811d7e3969fac257ad2e0412d91ffb3e8.tar
nixlib-d537a83811d7e3969fac257ad2e0412d91ffb3e8.tar.gz
nixlib-d537a83811d7e3969fac257ad2e0412d91ffb3e8.tar.bz2
nixlib-d537a83811d7e3969fac257ad2e0412d91ffb3e8.tar.lz
nixlib-d537a83811d7e3969fac257ad2e0412d91ffb3e8.tar.xz
nixlib-d537a83811d7e3969fac257ad2e0412d91ffb3e8.tar.zst
nixlib-d537a83811d7e3969fac257ad2e0412d91ffb3e8.zip
ppx_inline_test: init at 113.33.03
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-inline-test.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-inline-test.nix b/pkgs/development/ocaml-modules/janestreet/ppx-inline-test.nix
new file mode 100644
index 000000000000..26dd7d70c444
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-inline-test.nix
@@ -0,0 +1,14 @@
+{stdenv, buildOcamlJane,
+ ppx_core, ppx_driver, ppx_tools}:
+
+buildOcamlJane rec {
+  name = "ppx_inline_test";
+  hash = "0ygapa54i0wwcj3jcqwiimrc6z0b7aafgjhbk37h6vvclnm5n7f6";
+  propagatedBuildInputs = [ ppx_core ppx_driver ppx_tools ];
+
+  meta = with stdenv.lib; {
+    description = "Syntax extension for writing in-line tests in ocaml code.";
+    maintainers = [ maintainers.maurer ];
+    license = licenses.asl20;
+  };
+}