ocamlPackages.dot-merlin-reader: add missing input

This commit is contained in:
Vincent Laporte 2023-05-24 07:27:06 +02:00
parent 9d9fe9971d
commit 6c31436baa
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -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";