summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/type_conv/112.01.01.nix
diff options
context:
space:
mode:
authorEric Merritt <eric@afiniate.com>2015-05-24 10:45:01 -0700
committerEric Merritt <eric@afiniate.com>2015-05-24 12:32:45 -0700
commit8751d1ea1a43d877ebce2b57b2ce2f1bb1087593 (patch)
treeca4fa32a5a3672335b409402e1363e2c306b9184 /pkgs/development/ocaml-modules/type_conv/112.01.01.nix
parent82e098fd9319fe4e23c98819972fa3a0206442bf (diff)
downloadnixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.tar
nixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.tar.gz
nixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.tar.bz2
nixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.tar.lz
nixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.tar.xz
nixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.tar.zst
nixlib-8751d1ea1a43d877ebce2b57b2ce2f1bb1087593.zip
rename ocaml_typeconv to type_conv
The actual name of the package is type_conv
(https://github.com/janestreet/type_conv). Having it named
ocaml_typeconv adds a verbosity that isn't required and actually makes
the package harder to find.
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 ];
+  };
+}