depot/third_party/nixpkgs/pkgs/development/ocaml-modules/janestreet/fieldslib.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

19 lines
632 B
Nix

{ stdenv, type_conv, buildOcamlJane }:
buildOcamlJane {
name = "fieldslib";
version = "113.33.03";
minimumSupportedOcamlVersion = "4.02";
hash = "0mkbix32f8sq32q81hb10z2q31bw5f431jxv0jafbdrif0vr6xqd";
propagatedBuildInputs = [ type_conv ];
meta = with stdenv.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 ];
};
}