forked from mirrors/nixpkgs
a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
25 lines
595 B
Nix
25 lines
595 B
Nix
{ lib, buildDunePackage, fetchurl, cppo }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "merlin-extend";
|
|
version = "0.6";
|
|
|
|
useDune2 = true;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/let-def/merlin-extend/releases/download/v${version}/merlin-extend-v${version}.tbz";
|
|
sha256 = "0hvc4mz92x3rl2dxwrhvhzwl4gilnyvvwcqgr45vmdpyjyp3dwn2";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ cppo ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/let-def/merlin-extend";
|
|
description = "SDK to extend Merlin";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.volth ];
|
|
};
|
|
}
|