mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +00:00
15 lines
260 B
Nix
15 lines
260 B
Nix
{ buildDunePackage, merlin, csexp }:
|
||
|
||
buildDunePackage {
|
||
pname = "merlin-lib";
|
||
inherit (merlin) version src;
|
||
|
||
minimalOCamlVersion = "4.14";
|
||
|
||
propagatedBuildInputs = [ csexp ];
|
||
|
||
meta = merlin.meta // {
|
||
description = "Merlin’s libraries";
|
||
};
|
||
}
|