summary refs log tree commit diff
path: root/pkgs
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
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')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-custom-printf.nix15
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 17 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;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 6870665e2247..424efc9d0ea9 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -5533,6 +5533,8 @@ in
     ppx_bench = callPackage ../development/ocaml-modules/janestreet/ppx-bench.nix {};
 
     ppx_bin_prot = callPackage ../development/ocaml-modules/janestreet/ppx-bin-prot.nix {};
+
+    ppx_custom_printf = callPackage ../development/ocaml-modules/janestreet/ppx-custom-printf.nix {};
   };
 
   ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;