nixpkgs/pkgs/development/ocaml-modules/type_conv/112.01.01.nix
Ryan Mulligan a7e7a1448a ocamlPackages.type_conv: 112.01.01 -> 113.00.02
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 113.00.02 with grep in /nix/store/ph9bs0vwwgpm1gcypd37ia7h3iybrzlf-ocaml-type_conv-113.00.02
- directory tree listing: https://gist.github.com/e0e5582781203fe8077a8ede54af0ef6
2018-03-30 22:22:20 +02:00

21 lines
570 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; [ z77z ericbmerritt ];
};
}