ocamlPackages.merlin_extend-0.3 -> merlin-extend-0.4

This commit is contained in:
Vincent Laporte
2019-08-02 06:32:51 +00:00
committed by Vincent Laporte
parent 62768f8efc
commit 0d70d4a8b8
4 changed files with 25 additions and 29 deletions
@@ -0,0 +1,22 @@
{ lib, buildDunePackage, fetchFromGitHub, cppo }:
buildDunePackage rec {
pname = "merlin-extend";
version = "0.4";
src = fetchFromGitHub {
owner = "let-def";
repo = pname;
sha256 = "1dxiqmm7ry24gvw6p9n4mrz37mnq4s6m8blrccsv3rb8yq82acx9";
rev = "v${version}";
};
buildInputs = [ cppo ];
meta = with lib; {
inherit (src.meta) homepage;
description = "SDK to extend Merlin";
license = licenses.mit;
maintainers = [ maintainers.volth ];
};
}