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:48:04 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:35 -0400
commitbf2299bd48d27459391fdfa2b6fa4220e790fea3 (patch)
tree4b3bb808105458940ddef3d1cf4fa08e3a27b77a /pkgs/development/ocaml-modules
parentd862e9a6a1dc2039032ef21c08215030a151d991 (diff)
downloadnixlib-bf2299bd48d27459391fdfa2b6fa4220e790fea3.tar
nixlib-bf2299bd48d27459391fdfa2b6fa4220e790fea3.tar.gz
nixlib-bf2299bd48d27459391fdfa2b6fa4220e790fea3.tar.bz2
nixlib-bf2299bd48d27459391fdfa2b6fa4220e790fea3.tar.lz
nixlib-bf2299bd48d27459391fdfa2b6fa4220e790fea3.tar.xz
nixlib-bf2299bd48d27459391fdfa2b6fa4220e790fea3.tar.zst
nixlib-bf2299bd48d27459391fdfa2b6fa4220e790fea3.zip
ppx_custom_printf: init at 113.33.03
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-custom-printf.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-custom-printf.nix b/pkgs/development/ocaml-modules/janestreet/ppx-custom-printf.nix
new file mode 100644
index 000000000000..f96d5bf4ca60
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-custom-printf.nix
@@ -0,0 +1,15 @@
+{stdenv, buildOcamlJane,
+ ppx_core, ppx_driver, ppx_sexp_conv, ppx_tools}:
+
+buildOcamlJane rec {
+  name = "ppx_custom_printf";
+  hash = "06y85m6ky376byja4w7gdwd339di5ag0xrf0czkylzjsnylhdr85";
+
+  propagatedBuildInputs = [ ppx_core ppx_driver ppx_sexp_conv ppx_tools ];
+
+  meta = with stdenv.lib; {
+    description = "Extensions to printf-style format-strings for user-defined string conversion.";
+    maintainers = [ maintainers.maurer ];
+    license = licenses.asl20;
+  };
+}