summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/typeconv/112.01.01.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/typeconv/112.01.01.nix')
-rw-r--r--pkgs/development/ocaml-modules/typeconv/112.01.01.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/typeconv/112.01.01.nix b/pkgs/development/ocaml-modules/typeconv/112.01.01.nix
new file mode 100644
index 000000000000..fd7ebc28b977
--- /dev/null
+++ b/pkgs/development/ocaml-modules/typeconv/112.01.01.nix
@@ -0,0 +1,20 @@
+{stdenv, fetchurl, buildOcaml}:
+
+buildOcaml rec {
+  minimumSupportedOcamlVersion = "4.02";
+
+  name = "typeconv";
+  version = "112.01.01";
+
+  src = fetchurl {
+    url = "https://github.com/janestreet/type_conv/archive/${version}.tar.gz";
+    sha256 = "dbbc33b7ab420e8442d79ba4308ea6c0c16903b310d33525be18841159aa8855";
+  };
+
+  meta = {
+    homepage = "https://github.com/janestreet/type_conv/";
+    description = "Support library for preprocessor type conversions";
+    license = stdenv.lib.licenses.asl20;
+    maintainers = with stdenv.lib.maintainers; [ z77z ericbmerritt ];
+  };
+}