lol
1{stdenv, writeText, buildOcaml, fetchurl, type_conv}:
2
3buildOcaml rec {
4 name = "bin_prot";
5 version = "112.24.00";
6
7 minimumSupportedOcamlVersion = "4.00";
8
9 src = fetchurl {
10 url = "https://github.com/janestreet/bin_prot/archive/${version}.tar.gz";
11 sha256 = "dc0c978a825c7c123990af3317637c218f61079e6f35dc878260651084f1adb4";
12 };
13
14 propagatedBuildInputs = [ type_conv ];
15
16 hasSharedObjects = true;
17
18 meta = with stdenv.lib; {
19 homepage = https://github.com/janestreet/bin_prot;
20 description = "Binary protocol generator ";
21 license = licenses.asl20;
22 maintainers = [ maintainers.ericbmerritt ];
23 };
24}