summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-12-15 06:30:34 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2023-12-15 06:40:41 +0100
commit64daf50ff3a7e5294ccd483a7bb44d1afa5a1e89 (patch)
treeb75222e4293867c67ff255e2c97c4971e0d0873b /pkgs/development/ocaml-modules
parent73b3a1450f4a4c0bec689348b51ac36037590c1c (diff)
ocamlPackages.httpaf: add missing dependency
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/httpaf/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/httpaf/default.nix b/pkgs/development/ocaml-modules/httpaf/default.nix
index f262d51ee7dc..6dce28fb2020 100644
--- a/pkgs/development/ocaml-modules/httpaf/default.nix
+++ b/pkgs/development/ocaml-modules/httpaf/default.nix
@@ -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 = {