summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/type_conv/112.01.01.nix
diff options
context:
space:
mode:
authorts468 <ts468@users.noreply.github.com>2015-09-06 21:15:10 +0200
committerts468 <ts468@users.noreply.github.com>2015-09-06 21:15:10 +0200
commit054be41e04e2f583433c8d69f73f63389aec7f77 (patch)
tree57b99067b9535540280af72c31b134d8ba8e1589 /pkgs/development/ocaml-modules/type_conv/112.01.01.nix
parenta9dab9df6110f6f5c8300c4408c845d8176539bd (diff)
downloadnixlib-054be41e04e2f583433c8d69f73f63389aec7f77.tar
nixlib-054be41e04e2f583433c8d69f73f63389aec7f77.tar.gz
nixlib-054be41e04e2f583433c8d69f73f63389aec7f77.tar.bz2
nixlib-054be41e04e2f583433c8d69f73f63389aec7f77.tar.lz
nixlib-054be41e04e2f583433c8d69f73f63389aec7f77.tar.xz
nixlib-054be41e04e2f583433c8d69f73f63389aec7f77.tar.zst
nixlib-054be41e04e2f583433c8d69f73f63389aec7f77.zip
Revert "ocaml-modules: fix naming: "_" -> "-""
Diffstat (limited to 'pkgs/development/ocaml-modules/type_conv/112.01.01.nix')
-rw-r--r--pkgs/development/ocaml-modules/type_conv/112.01.01.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/type_conv/112.01.01.nix b/pkgs/development/ocaml-modules/type_conv/112.01.01.nix
new file mode 100644
index 000000000000..e65306d15018
--- /dev/null
+++ b/pkgs/development/ocaml-modules/type_conv/112.01.01.nix
@@ -0,0 +1,20 @@
+{stdenv, fetchurl, buildOcaml}:
+
+buildOcaml rec {
+  minimumSupportedOcamlVersion = "4.02";
+
+  name = "type_conv";
+  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 ];
+  };
+}