summary refs log tree commit diff
path: root/pkgs/development/tools/tabnine
diff options
context:
space:
mode:
authorAndrey Kuznetsov <fear@loathing.in>2021-01-06 23:45:24 +0000
committerAndrey Kuznetsov <fear@loathing.in>2021-01-07 09:27:03 +0000
commitdaf463b576eb3ee73f85ece7b6847732c43a90c9 (patch)
treedc618f4ba754ca19db0417f4802bba0b3ecb7342 /pkgs/development/tools/tabnine
parentf85194205d580e5808297863b0acbd893cf94273 (diff)
downloadnixpkgs-daf463b576eb3ee73f85ece7b6847732c43a90c9.tar
nixpkgs-daf463b576eb3ee73f85ece7b6847732c43a90c9.tar.gz
nixpkgs-daf463b576eb3ee73f85ece7b6847732c43a90c9.tar.bz2
nixpkgs-daf463b576eb3ee73f85ece7b6847732c43a90c9.tar.lz
nixpkgs-daf463b576eb3ee73f85ece7b6847732c43a90c9.tar.xz
nixpkgs-daf463b576eb3ee73f85ece7b6847732c43a90c9.tar.zst
nixpkgs-daf463b576eb3ee73f85ece7b6847732c43a90c9.zip
tabnine: 3.1.1 -> 3.2.63
Diffstat (limited to 'pkgs/development/tools/tabnine')
-rw-r--r--pkgs/development/tools/tabnine/default.nix21
1 files changed, 13 insertions, 8 deletions
diff --git a/pkgs/development/tools/tabnine/default.nix b/pkgs/development/tools/tabnine/default.nix
index 6c54e8f3c40..f18be619f26 100644
--- a/pkgs/development/tools/tabnine/default.nix
+++ b/pkgs/development/tools/tabnine/default.nix
@@ -1,17 +1,17 @@
-{ stdenv, lib, fetchurl }:
+{ stdenv, lib, fetchurl, unzip }:
 
 let
-  version = "3.1.1";
+  version = "3.2.63";
   src =
     if stdenv.hostPlatform.system == "x86_64-darwin" then
       fetchurl {
-        url = "https://update.tabnine.com/${version}/x86_64-apple-darwin/TabNine";
-        sha256 = "w+Ufy4pICfQmseKCeohEQIP0VD6YrkYTEn41HX40Zlw=";
+        url = "https://update.tabnine.com/bundles/${version}/x86_64-apple-darwin/TabNine.zip";
+        sha256 = "0y0wb3jdr2qk4k21c11w8c9a5fl0h2rm1wm7m8hqdywy4lz9ppgy";
       }
     else if stdenv.hostPlatform.system == "x86_64-linux" then
       fetchurl {
-        url = "https://update.tabnine.com/${version}/x86_64-unknown-linux-musl/TabNine";
-        sha256 = "hSltZWQz2BRFut0NDI4fS/N8XxFJaYGHRtV3llBVOY4=";
+        url = "https://update.tabnine.com/bundles/${version}/x86_64-unknown-linux-musl/TabNine.zip";
+        sha256 = "0zzk2w5azk5f0svjxlj2774x01xdflb767xxvbglj4223dgyx2x5";
       }
     else throw "Not supported on ${stdenv.hostPlatform.system}";
 in stdenv.mkDerivation rec {
@@ -20,10 +20,15 @@ in stdenv.mkDerivation rec {
   inherit version src;
 
   dontBuild = true;
-  dontUnpack = true;
+
+  # Work around the "unpacker appears to have produced no directories"
+  # case that happens when the archive doesn't have a subdirectory.
+  setSourceRoot = "sourceRoot=`pwd`";
+
+  nativeBuildInputs = [ unzip ];
 
   installPhase = ''
-    install -Dm755 $src $out/bin/TabNine
+    install -Dm755 TabNine $out/bin/TabNine
   '';
 
   meta = with lib; {