Skip to content

Commit

Permalink
ocamlPackages.dot-merlin-reader: init at 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hongchangwu authored and vbgl committed Sep 25, 2020
1 parent 76dcad0 commit 91c74ee
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Expand Up @@ -3467,6 +3467,12 @@
githubId = 896431;
name = "Chris Hodapp";
};
hongchangwu = {
email = "wuhc85@gmail.com";
github = "hongchangwu";
githubId = 362833;
name = "Hongchang Wu";
};
hrdinka = {
email = "c.nix@hrdinka.at";
github = "hrdinka";
Expand Down
24 changes: 24 additions & 0 deletions pkgs/development/tools/ocaml/merlin/dot-merlin-reader.nix
@@ -0,0 +1,24 @@
{ lib, fetchurl, ocamlPackages }:

with ocamlPackages;

buildDunePackage rec {
pname = "dot-merlin-reader";
version = "3.4.0";

minimumOCamlVersion = "4.02.1";

src = fetchurl {
url = "https://github.com/ocaml/merlin/releases/download/v${version}/merlin-v${version}.tbz";
sha256 = "048rkpbvayksv8mgmkgi17vv0y9xplv7v2ww4d1hs7bkm5zzsvg2";
};

buildInputs = [ yojson csexp result ];

meta = with lib; {
description = "Reads config files for merlin";
homepage = "https://github.com/ocaml/merlin";
license = licenses.mit;
maintainers = [ maintainers.hongchangwu ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -1846,6 +1846,8 @@ in

dosage = callPackage ../applications/graphics/dosage { };

dot-merlin-reader = callPackage ../development/tools/ocaml/merlin/dot-merlin-reader.nix { };

dozenal = callPackage ../applications/misc/dozenal { };

dpic = callPackage ../tools/graphics/dpic { };
Expand Down

0 comments on commit 91c74ee

Please sign in to comment.