summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-05-24 07:27:06 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2023-05-24 07:46:43 +0200
commit6c31436baae0df3ca41077a4a6cc2052173608e1 (patch)
tree1c1ffc0f1acb383db54fd90229e3e2a8171b18ef /pkgs/development/tools/ocaml
parent9d9fe9971d4a71712c1a154b1dc14ff315fb9bf2 (diff)
ocamlPackages.dot-merlin-reader: add missing input
Diffstat (limited to 'pkgs/development/tools/ocaml')
-rw-r--r--pkgs/development/tools/ocaml/merlin/dot-merlin-reader.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/ocaml/merlin/dot-merlin-reader.nix b/pkgs/development/tools/ocaml/merlin/dot-merlin-reader.nix
index c4b69eb553096..89af62ed70e6e 100644
--- a/pkgs/development/tools/ocaml/merlin/dot-merlin-reader.nix
+++ b/pkgs/development/tools/ocaml/merlin/dot-merlin-reader.nix
@@ -1,4 +1,4 @@
-{ lib, fetchurl, yojson, csexp, findlib, buildDunePackage, merlin-lib, merlin }:
+{ lib, fetchurl, yojson, csexp, findlib, buildDunePackage, merlin-lib, merlin, result }:
 
 buildDunePackage rec {
   pname = "dot-merlin-reader";
@@ -12,7 +12,7 @@ buildDunePackage rec {
   buildInputs = [ findlib ]
   ++ (if lib.versionAtLeast version "4.7-414"
   then [ merlin-lib ]
-  else [ yojson csexp ]);
+  else [ yojson csexp result ]);
 
   meta = with lib; {
     description = "Reads config files for merlin";