summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorEric Merritt <eric@afiniate.com>2015-05-11 19:03:56 -0500
committerEric Merritt <eric@afiniate.com>2015-05-24 12:32:45 -0700
commit82e098fd9319fe4e23c98819972fa3a0206442bf (patch)
treeec77eb5cdcc6e2362d8fdbb51f6fd3abafe818d1 /pkgs/development/ocaml-modules
parent56627d5444d53b32b0c46bb7037cfa7e4510b1db (diff)
downloadnixpkgs-82e098fd9319fe4e23c98819972fa3a0206442bf.tar
nixpkgs-82e098fd9319fe4e23c98819972fa3a0206442bf.tar.gz
nixpkgs-82e098fd9319fe4e23c98819972fa3a0206442bf.tar.bz2
nixpkgs-82e098fd9319fe4e23c98819972fa3a0206442bf.tar.lz
nixpkgs-82e098fd9319fe4e23c98819972fa3a0206442bf.tar.xz
nixpkgs-82e098fd9319fe4e23c98819972fa3a0206442bf.tar.zst
nixpkgs-82e098fd9319fe4e23c98819972fa3a0206442bf.zip
ocaml-typeconv: upgrade to 112.01.01
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/typeconv/109.60.01.nix (renamed from pkgs/development/ocaml-modules/typeconv/default.nix)0
-rw-r--r--pkgs/development/ocaml-modules/typeconv/112.01.01.nix20
2 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/typeconv/default.nix b/pkgs/development/ocaml-modules/typeconv/109.60.01.nix
index 359f906ce34..359f906ce34 100644
--- a/pkgs/development/ocaml-modules/typeconv/default.nix
+++ b/pkgs/development/ocaml-modules/typeconv/109.60.01.nix
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 00000000000..fd7ebc28b97
--- /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 ];
+  };
+}