evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / angstrom-async / default.nix
blob92dd90ff22cbe7a7aa0fe0742bf692a0c50ce77c
1 { lib, buildDunePackage, angstrom, async }:
3 buildDunePackage rec {
4   pname = "angstrom-async";
6   inherit (angstrom) version src;
8   minimalOCamlVersion = "4.04.1";
10   propagatedBuildInputs = [ angstrom async ];
12   doCheck = true;
14   meta = {
15     inherit (angstrom.meta) homepage license;
16     description = "Async support for Angstrom";
17     maintainers = with lib.maintainers; [ romildo ];
18   };