Add script to ease TabNine updates
Alan Pearce alan@alanpearce.eu
Mon, 17 Aug 2020 13:02:02 +0200
1 files changed, 16 insertions(+), 0 deletions(-)
jump to
A update-tabnine.sh
@@ -0,0 +1,16 @@+#!/bin/sh + +function prefetch_target () { + nix-prefetch-url --type sha256 https://update.tabnine.com/$2/$1/TabNine 2> /dev/null +} + +if [ -z "$1" ]; then + echo "Usage: $0 <version>" + exit 1 +fi + +echo " +sha256 = if stdenv.isDarwin then +\"$(prefetch_target x86_64-apple-darwin $1)\" +else +\"$(prefetch_target x86_64-unknown-linux-musl $1)\";"