ocamlPackages.httpaf: add missing dependency

This commit is contained in:
Vincent Laporte 2023-12-15 06:30:34 +01:00
parent 73b3a1450f
commit 64daf50ff3
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -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 = {