ocamlPackages.httpaf: add missing dependency

This commit is contained in:
Vincent Laporte
2023-12-15 06:40:41 +01:00
parent 73b3a1450f
commit 64daf50ff3
@@ -1,12 +1,11 @@
{ lib, fetchFromGitHub, fetchpatch, buildDunePackage
, angstrom, faraday, alcotest
, angstrom, faraday, result, alcotest
}:
buildDunePackage rec {
pname = "httpaf";
version = "0.7.1";
duneVersion = "3";
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
@@ -17,7 +16,7 @@ buildDunePackage rec {
};
checkInputs = [ alcotest ];
propagatedBuildInputs = [ angstrom faraday ];
propagatedBuildInputs = [ angstrom faraday result ];
doCheck = true;
meta = {