ocamlPackages.merlin-extend: 0.4 → 0.6

This commit is contained in:
Vincent Laporte 2020-08-07 10:31:59 +02:00 committed by Vincent Laporte
parent 49a99103c8
commit c25d99efcb

View File

@ -1,20 +1,18 @@
{ lib, buildDunePackage, fetchFromGitHub, cppo }: { lib, buildDunePackage, fetchurl, cppo }:
buildDunePackage rec { buildDunePackage rec {
pname = "merlin-extend"; pname = "merlin-extend";
version = "0.4"; version = "0.6";
src = fetchFromGitHub { src = fetchurl {
owner = "let-def"; url = "https://github.com/let-def/merlin-extend/releases/download/v${version}/merlin-extend-v${version}.tbz";
repo = pname; sha256 = "0hvc4mz92x3rl2dxwrhvhzwl4gilnyvvwcqgr45vmdpyjyp3dwn2";
sha256 = "1dxiqmm7ry24gvw6p9n4mrz37mnq4s6m8blrccsv3rb8yq82acx9";
rev = "v${version}";
}; };
buildInputs = [ cppo ]; buildInputs = [ cppo ];
meta = with lib; { meta = with lib; {
inherit (src.meta) homepage; homepage = "https://github.com/let-def/merlin-extend";
description = "SDK to extend Merlin"; description = "SDK to extend Merlin";
license = licenses.mit; license = licenses.mit;
maintainers = [ maintainers.volth ]; maintainers = [ maintainers.volth ];