Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchFromGitHub, buildDunePackage, angstrom, async }:
2
3buildDunePackage rec {
4 pname = "angstrom-async";
5
6 inherit (angstrom) version src;
7
8 duneVersion = "3";
9 minimalOCamlVersion = "4.04.1";
10
11 propagatedBuildInputs = [ angstrom async ];
12
13 doCheck = true;
14
15 meta = {
16 inherit (angstrom.meta) homepage license;
17 description = "Async support for Angstrom";
18 maintainers = with lib.maintainers; [ romildo ];
19 };
20}