about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/angstrom-async/default.nix
blob: 8c9f97f81abcd378a9da607f61ab90bd2d6d00d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, fetchFromGitHub, buildDunePackage, angstrom, async }:

buildDunePackage rec {
  pname = "angstrom-async";

  inherit (angstrom) version useDune2 src;

  minimumOCamlVersion = "4.04.1";

  propagatedBuildInputs = [ angstrom async ];

  doCheck = true;

  meta = {
    inherit (angstrom.meta) homepage license;
    description = "Async support for Angstrom";
    maintainers = with lib.maintainers; [ romildo ];
  };
}