about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/bin_prot/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/ocaml-modules/bin_prot/default.nix')
-rw-r--r--nixpkgs/pkgs/development/ocaml-modules/bin_prot/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/ocaml-modules/bin_prot/default.nix b/nixpkgs/pkgs/development/ocaml-modules/bin_prot/default.nix
new file mode 100644
index 000000000000..50ef935aff6b
--- /dev/null
+++ b/nixpkgs/pkgs/development/ocaml-modules/bin_prot/default.nix
@@ -0,0 +1,28 @@
+{ lib, buildOcaml, fetchurl, ocaml, type_conv }:
+
+if lib.versionAtLeast ocaml.version "4.06"
+then throw "bin_prot-112.24.00 is not available for OCaml ${ocaml.version}"
+else
+
+buildOcaml rec {
+  name = "bin_prot";
+  version = "112.24.00";
+
+  minimumSupportedOcamlVersion = "4.00";
+
+  src = fetchurl {
+    url = "https://github.com/janestreet/bin_prot/archive/${version}.tar.gz";
+    sha256 = "dc0c978a825c7c123990af3317637c218f61079e6f35dc878260651084f1adb4";
+  };
+
+  propagatedBuildInputs = [ type_conv ];
+
+  hasSharedObjects = true;
+
+  meta = with lib; {
+    homepage = "https://github.com/janestreet/bin_prot";
+    description = "Binary protocol generator ";
+    license = licenses.asl20;
+    maintainers = [ maintainers.ericbmerritt ];
+  };
+}