1
0
Fork 0
nix-overlay/packages/tabnine.nix

21 lines
584 B
Nix
Raw Normal View History

2023-11-23 15:45:00 +00:00
{ pkgs, lib, ... }:
pkgs.tabnine.overrideAttrs (
oa: rec {
2023-11-25 12:44:57 +00:00
# https://update.tabnine.com/bundles/version
2023-12-11 20:42:12 +00:00
version = "4.53.0";
2023-11-23 15:45:00 +00:00
src = pkgs.fetchurl {
url = "https://update.tabnine.com/bundles/${version}/aarch64-apple-darwin/TabNine.zip";
2023-12-11 20:42:12 +00:00
sha256 = "01c1rxf6k5wv4758g9m8n6mngp07kr8xbskb5liz1x8cljcs6f72";
2023-11-23 15:45:00 +00:00
};
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 = [ "aarch64-darwin" ];
};
}
)