nixpkgs/pkgs/development/ocaml-modules/angstrom-lwt-unix/default.nix

20 lines
436 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildDunePackage, angstrom, ocaml_lwt }:
buildDunePackage rec {
pname = "angstrom-lwt-unix";
2020-12-01 06:49:34 +00:00
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 ];
};
}