1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

ocamlPackages.merlin: 3.2.2 -> 3.3.0

This commit is contained in:
Mario Rodas 2019-05-31 05:30:00 -05:00 committed by Vincent Laporte
parent 7531309c6e
commit ddaf94d804

View file

@ -1,14 +1,16 @@
{ stdenv, fetchzip, buildDunePackage, yojson }:
{ stdenv, fetchFromGitHub, buildDunePackage, yojson }:
buildDunePackage rec {
pname = "merlin";
version = "3.2.2";
version = "3.3.0";
minimumOCamlVersion = "4.02";
minimumOCamlVersion = "4.02.1";
src = fetchzip {
url = "https://github.com/ocaml/merlin/archive/v${version}.tar.gz";
sha256 = "15ssgmwdxylbwhld9p1cq8x6kadxyhll5bfyf11dddj6cldna3hb";
src = fetchFromGitHub {
owner = "ocaml";
repo = pname;
rev = "v${version}";
sha256 = "1s4y7jz581hj4gqv4pkk3980khw4lm0qzcj416b4ckji40q7nf9d";
};
buildInputs = [ yojson ];