summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/janestreet/fieldslib.nix
blob: 75b894a8c14f5c2033bcef8e76439b22c2f47944 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, stdenv, type_conv, buildOcamlJane }:

buildOcamlJane {
  name = "fieldslib";
  version = "113.33.03";

  minimumSupportedOcamlVersion = "4.02";

  hash = "0mkbix32f8sq32q81hb10z2q31bw5f431jxv0jafbdrif0vr6xqd";

  propagatedBuildInputs = [ type_conv ];

  meta = with lib; {
    homepage = "https://ocaml.janestreet.com/";
    description = "OCaml syntax extension to define first class values representing record fields, to get and set record fields, iterate and fold over all fields of a record and create new record values";
    license = licenses.asl20;
    maintainers = [ maintainers.maurer maintainers.vbgl ];
  };
}