tabnine: fix build

Co-authored by: @onsails
gstqt5
Jonathan Ringer 2020-10-01 10:45:58 -07:00 committed by Jon
parent 1f87da9754
commit e6ec27be98
1 changed files with 13 additions and 11 deletions

View File

@ -1,34 +1,36 @@
{ stdenv, lib, fetchurl }:
let
target =
version = "3.1.1";
src =
if stdenv.hostPlatform.system == "x86_64-darwin" then
"x86_64-apple-darwin"
fetchurl {
url = "https://update.tabnine.com/${version}/x86_64-apple-darwin/TabNine";
sha256 = "w+Ufy4pICfQmseKCeohEQIP0VD6YrkYTEn41HX40Zlw=";
}
else if stdenv.hostPlatform.system == "x86_64-linux" then
"x86_64-unknown-linux-musl"
fetchurl {
url = "https://update.tabnine.com/${version}/x86_64-unknown-linux-musl/TabNine";
sha256 = "hSltZWQz2BRFut0NDI4fS/N8XxFJaYGHRtV3llBVOY4=";
}
else throw "Not supported on ${stdenv.hostPlatform.system}";
in stdenv.mkDerivation rec {
pname = "tabnine";
version = "3.1.1";
src = fetchurl {
url = "https://update.tabnine.com/${version}/${target}/TabNine";
sha256 = "w+Ufy4pICfQmseKCeohEQIP0VD6YrkYTEn41HX40Zlw=";
};
inherit version src;
dontBuild = true;
dontUnpack = true;
installPhase = ''
chmod +x $src
mkdir -p $out/bin
ln -s $src $out/bin/TabNine
'';
meta = {
meta = with lib; {
homepage = "https://tabnine.com";
description = "Smart Compose for code that uses deep learning to help you write code faster";
license = lib.licenses.unfree;
license = licenses.unfree;
platforms = [ "x86_64-darwin" "x86_64-linux" ];
};
}