summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/type_conv/112.01.01.nix
blob: e90ca2d16a64d996bdeb22a8aa89765c6e33d512 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, fetchFromGitHub, buildOcaml}:

buildOcaml rec {
  minimumSupportedOcamlVersion = "4.02";

  pname = "type_conv";
  version = "113.00.02";

  src = fetchFromGitHub {
    owner = "janestreet";
    repo = "type_conv";
    rev = version;
    sha256 = "sha256-HzH0hnceCQ2kDRATjl+tfKk3XSBDsGnPzVUGYpDQUmU=";
  };

  meta = {
    homepage = "https://github.com/janestreet/type_conv/";
    description = "Support library for preprocessor type conversions";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ maggesi ericbmerritt ];
  };
}