summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorJake Waksbaum <jake.waksbaum@gmail.com>2017-09-21 14:39:36 -0400
committerJörg Thalheim <Mic92@users.noreply.github.com>2017-09-21 19:39:36 +0100
commita3ba600366f9c2892b9fed3856c528af3a0fe075 (patch)
tree5ac29c44321facbf71da1e9e0e228ea325b0e5f4 /pkgs/development/tools
parent7d3d276a16010c1400bec97ac3cbfd494adc4490 (diff)
downloadnixpkgs-a3ba600366f9c2892b9fed3856c528af3a0fe075.tar
nixpkgs-a3ba600366f9c2892b9fed3856c528af3a0fe075.tar.gz
nixpkgs-a3ba600366f9c2892b9fed3856c528af3a0fe075.tar.bz2
nixpkgs-a3ba600366f9c2892b9fed3856c528af3a0fe075.tar.lz
nixpkgs-a3ba600366f9c2892b9fed3856c528af3a0fe075.tar.xz
nixpkgs-a3ba600366f9c2892b9fed3856c528af3a0fe075.tar.zst
nixpkgs-a3ba600366f9c2892b9fed3856c528af3a0fe075.zip
ocamlPackages.merlin: 2.5.4 -> 3.0.2 (#29337)
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/ocaml/merlin/default.nix14
1 files changed, 3 insertions, 11 deletions
diff --git a/pkgs/development/tools/ocaml/merlin/default.nix b/pkgs/development/tools/ocaml/merlin/default.nix
index 4680785ac7c..a6252a5c729 100644
--- a/pkgs/development/tools/ocaml/merlin/default.nix
+++ b/pkgs/development/tools/ocaml/merlin/default.nix
@@ -4,15 +4,7 @@
 assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.00";
 
 let
-  version = if lib.versionOlder (lib.getVersion ocaml) "4.02.0"
-  then
-    "2.3.1"
-  else
-    "2.5.4";
-  hashes = {
-    "2.3.1" = "192jamcc7rmvadlqqsjkzsl6hlgwhg9my1qc89fxh1lmd4qdsrpn";
-    "2.5.4" = "101vk16c5wayd51s8w0mvy99bk7q3gm2gz8i8616wa1lmyszjknh";
-  };
+  version = "3.0.2";
 in
 
 stdenv.mkDerivation {
@@ -20,8 +12,8 @@ stdenv.mkDerivation {
   name = "merlin-${version}";
 
   src = fetchzip {
-    url = "https://github.com/the-lambda-church/merlin/archive/v${version}.tar.gz";
-    sha256 = hashes."${version}";
+    url = "https://github.com/ocaml/merlin/archive/v${version}.tar.gz";
+    sha256 = "0lcgafs5ip8vhvrp1d7yv6mzjsirmayd83cj4wwq6zxcrl7yv4x8";
   };
 
   buildInputs = [ ocaml findlib yojson ]