forked from mirrors/nixpkgs
44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{ stdenv, lib, fetchurl, unzip }:
|
|
|
|
let
|
|
version = "3.3.101";
|
|
src =
|
|
if stdenv.hostPlatform.system == "x86_64-darwin" then
|
|
fetchurl
|
|
{
|
|
url = "https://update.tabnine.com/bundles/${version}/x86_64-apple-darwin/TabNine.zip";
|
|
sha256 = "KrFDQSs7hMCioeqPKTNODe3RKnwNV8XafdYDUaxou/Y=";
|
|
}
|
|
else if stdenv.hostPlatform.system == "x86_64-linux" then
|
|
fetchurl
|
|
{
|
|
url = "https://update.tabnine.com/bundles/${version}/x86_64-unknown-linux-musl/TabNine.zip";
|
|
sha256 = "vbeuZf/phOj83xTha+AzpKIvvrjwMar7q2teAmr5ESQ=";
|
|
}
|
|
else throw "Not supported on ${stdenv.hostPlatform.system}";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "tabnine";
|
|
|
|
inherit version src;
|
|
|
|
dontBuild = 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 TabNine $out/bin/TabNine
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://tabnine.com";
|
|
description = "Smart Compose for code that uses deep learning to help you write code faster";
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-darwin" "x86_64-linux" ];
|
|
};
|
|
}
|