summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet/sexplib.nix
blob: f4a86f80b04d5f941872bec89bfcb848d8d7d773 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, buildOcamlJane, type_conv}:

buildOcamlJane {
  minimumSupportedOcamlVersion = "4.02";
  name = "sexplib";
  version = "113.33.03";

  hash = "1klar4qw4s7bj47ig7kxz2m4j1q3c60pfppis4vxrxv15r0kfh22";

  propagatedBuildInputs = [ type_conv ];

  meta = with stdenv.lib; {
    homepage = https://ocaml.janestreet.com/;
    description = "Library for serializing OCaml values to and from S-expressions";
    license = licenses.asl20;
    maintainers = [ maintainers.maurer maintainers.ericbmerritt ];
  };
}