ocamlPackages.merlin: 3.3.2 → 3.3.3

This commit is contained in:
Vincent Laporte 2019-12-03 17:18:33 +00:00 committed by Vincent Laporte
parent 17d1925608
commit 2cf477f28d

@ -1,21 +1,19 @@
{ stdenv, fetchFromGitHub, buildDunePackage, yojson }:
{ lib, fetchurl, buildDunePackage, yojson }:
buildDunePackage rec {
pname = "merlin";
version = "3.3.2";
version = "3.3.3";
minimumOCamlVersion = "4.02.1";
src = fetchFromGitHub {
owner = "ocaml";
repo = pname;
rev = "v${version}";
sha256 = "1z9mcxflraj15sbz6q7f84n31n9fsialw7z8bi3r1biz68nypva9";
src = fetchurl {
url = "https://github.com/ocaml/merlin/releases/download/v${version}/merlin-v${version}.tbz";
sha256 = "05dfkbpbb7nvs4g6y0iw7a9f73ygvhs9l45l2g56y7zagvs9x43j";
};
buildInputs = [ yojson ];
meta = with stdenv.lib; {
meta = with lib; {
description = "An editor-independent tool to ease the development of programs in OCaml";
homepage = "https://github.com/ocaml/merlin";
license = licenses.mit;