about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/angstrom-lwt-unix/default.nix
blob: 1bb8833cf07929d81212c210a10938e9551973e7 (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, ocaml_lwt }:

buildDunePackage rec {
  pname = "angstrom-lwt-unix";

  inherit (angstrom) version useDune2 src;

  minimumOCamlVersion = "4.03";

  propagatedBuildInputs = [ angstrom ocaml_lwt ];

  doCheck = true;

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