summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-10-29 00:08:01 +0000
committerGitHub <noreply@github.com>2018-10-29 00:08:01 +0000
commitc7f4c0350c6ae5d043be6e3a39ae9cd7fe69db58 (patch)
tree30607c4a661dfd5c8a4b3e817694483ec8002244 /pkgs
parent14721b2adc18a99700f7c9ade64ba39c1c7709a9 (diff)
parentbaa4483a656a475f144abdfe0c49e278505d3b0d (diff)
downloadnixlib-c7f4c0350c6ae5d043be6e3a39ae9cd7fe69db58.tar
nixlib-c7f4c0350c6ae5d043be6e3a39ae9cd7fe69db58.tar.gz
nixlib-c7f4c0350c6ae5d043be6e3a39ae9cd7fe69db58.tar.bz2
nixlib-c7f4c0350c6ae5d043be6e3a39ae9cd7fe69db58.tar.lz
nixlib-c7f4c0350c6ae5d043be6e3a39ae9cd7fe69db58.tar.xz
nixlib-c7f4c0350c6ae5d043be6e3a39ae9cd7fe69db58.tar.zst
nixlib-c7f4c0350c6ae5d043be6e3a39ae9cd7fe69db58.zip
Merge pull request #49260 from r-ryantm/auto-update/merlin
ocamlPackages.merlin: 3.2.1 -> 3.2.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/ocaml/merlin/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/ocaml/merlin/default.nix b/pkgs/development/tools/ocaml/merlin/default.nix
index d74b480c9c5a..c15970d3f3e6 100644
--- a/pkgs/development/tools/ocaml/merlin/default.nix
+++ b/pkgs/development/tools/ocaml/merlin/default.nix
@@ -3,7 +3,7 @@
 assert stdenv.lib.versionAtLeast ocaml.version "4.02";
 
 let
-  version = "3.2.1";
+  version = "3.2.2";
 in
 
 stdenv.mkDerivation {
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
 
   src = fetchzip {
     url = "https://github.com/ocaml/merlin/archive/v${version}.tar.gz";
-    sha256 = "1szv2b7d12ll5n6pvnhlv3a6vnlyrkpya4l9fiyyiwyvgd4xzxwf";
+    sha256 = "15ssgmwdxylbwhld9p1cq8x6kadxyhll5bfyf11dddj6cldna3hb";
   };
 
   buildInputs = [ ocaml findlib dune yojson ];