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

27 lines
417 B
Nix

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