nixpkgs/pkgs/development/ocaml-modules/type_conv/112.01.01.nix
Marco Maggesi ff1ed720e2 Rename z77z into maggesi
Make the "handle" of the maintainer match the name of the github account.
Also update the email address.
2019-10-07 17:05:25 +02:00

21 lines
573 B
Nix

{stdenv, 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 = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [ maggesi ericbmerritt ];
};
}