nixpkgs/pkgs/development/ocaml-modules/angstrom-async/default.nix
2023-04-11 06:36:01 +02:00

21 lines
436 B
Nix

{ lib, fetchFromGitHub, buildDunePackage, angstrom, async }:
buildDunePackage rec {
pname = "angstrom-async";
inherit (angstrom) version src;
duneVersion = "3";
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 ];
};
}