Files
nixpkgs/pkgs/development/tools/ocaml/merlin/lib.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
267 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
merlin,
csexp,
}:
buildDunePackage {
pname = "merlin-lib";
inherit (merlin) version src;
minimalOCamlVersion = "4.14";
propagatedBuildInputs = [ csexp ];
meta = merlin.meta // {
description = "Merlins libraries";
};
}