forked from mirrors/nixpkgs
25 lines
776 B
Bash
25 lines
776 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
version=1.14.0
|
||
|
hashfile=binary-hashes.nix
|
||
|
rm -f $hashfile
|
||
|
echo "{" >> $hashfile
|
||
|
echo "version = \"$version\";" >> $hashfile
|
||
|
for sys in "linux" "darwin"; do
|
||
|
for tfpref in "cpu" "gpu"; do
|
||
|
for platform in "x86_64"; do
|
||
|
if [ $sys = "darwin" ] && [ $tfpref = "gpu" ]; then
|
||
|
continue
|
||
|
fi
|
||
|
url=https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-$tfpref-$sys-$platform-$version.tar.gz
|
||
|
hash=$(nix-prefetch-url $url)
|
||
|
echo "\"${tfpref}-${sys}-${platform}\" = {" >> $hashfile
|
||
|
echo " url = \"$url\";" >> $hashfile
|
||
|
echo " sha256 = \"$hash\";" >> $hashfile
|
||
|
echo "};" >> $hashfile
|
||
|
done
|
||
|
done
|
||
|
done
|
||
|
echo "}" >> $hashfile
|
||
|
|