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

buildOcaml rec {
  minimumSupportedOcamlVersion = "4.02";

  name = "type_conv";
  version = "113.00.02";

  src = fetchurl {
    url = "https://github.com/janestreet/type_conv/archive/${version}.tar.gz";
    sha256 = "1718yl2q8zandrs4xqffkfmssfld1iz62dzcqdm925735c1x01fk";
  };

  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 ];
  };
}