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

25 lines
384 B
Nix

{
lib,
buildDunePackage,
angstrom,
lwt,
}:
buildDunePackage rec {
pname = "angstrom-lwt-unix";
inherit (angstrom) version src;
propagatedBuildInputs = [
angstrom
lwt
];
doCheck = true;
meta = {
inherit (angstrom.meta) homepage license;
description = "Lwt_unix support for Angstrom";
maintainers = with lib.maintainers; [ romildo ];
};
}