Merge pull request #138218 from lovesegfault/tabnine-3.6.8

tabnine: 3.5.49 -> 3.6.8

authored by

Bernardo Meurer and committed by
GitHub
f12fb7a7 f837a27a

+4 -4
+3 -3
pkgs/development/tools/tabnine/default.nix
··· 3 3 platform = 4 4 if stdenv.hostPlatform.system == "x86_64-linux" then { 5 5 name = "x86_64-unknown-linux-musl"; 6 - sha256 = "sha256-uy3+/+XMq56rO75mmSeOmE1HW7hhefaGwfY/QJPk3Ok="; 6 + sha256 = "sha256-+jxjHE2/6IGptMlKXGebHcaIVokOP76ut325EbkdaA0="; 7 7 } else if stdenv.hostPlatform.system == "x86_64-darwin" then { 8 8 name = "x86_64-apple-darwin"; 9 - sha256 = "sha256-EK7FbRzgaCXviOuBcRf/ElllRdakhDmOLsKkwrIEhBU="; 9 + sha256 = "sha256-87Hy1akNrZWQbKutkv4CToTyMcxRc7Y24o1+vI4pev8="; 10 10 } else throw "Not supported on ${stdenv.hostPlatform.system}"; 11 11 in 12 12 stdenv.mkDerivation rec { 13 13 pname = "tabnine"; 14 14 # You can check the latest version with `curl -sS https://update.tabnine.com/bundles/version` 15 - version = "3.5.49"; 15 + version = "3.6.8"; 16 16 17 17 src = fetchurl { 18 18 url = "https://update.tabnine.com/bundles/${version}/${platform.name}/TabNine.zip";
+1 -1
pkgs/misc/vim-plugins/overrides.nix
··· 142 142 dependencies = with self; [ completion-nvim ]; 143 143 buildInputs = [ tabnine ]; 144 144 postFixup = '' 145 - mkdir $target/binaries 145 + mkdir -p $target/binaries 146 146 ln -s ${tabnine}/bin/TabNine $target/binaries/TabNine_$(uname -s) 147 147 ''; 148 148 });