aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/angstrom-lwt-unix/default.nix
blob: eb4de44d7a6e8258a67a07fe5bdecfd1d776b363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, 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 stdenv.lib.maintainers; [ romildo ];
  };
}