Skip to content

Instantly share code, notes, and snippets.

@hhanh00
Last active February 25, 2022 02:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hhanh00/265cf1da49cec42c685e1a3f1c2740fc to your computer and use it in GitHub Desktop.
Save hhanh00/265cf1da49cec42c685e1a3f1c2740fc to your computer and use it in GitHub Desktop.
For building the arm64 version of zcashd
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "debian/buster64"
config.vm.provider "virtualbox" do |vb|
vb.memory = "4096"
end
config.vm.provision "shell", keep_color: "true", path: "https://gist.githubusercontent.com/hhanh00/b0577c652641860b931d2803e3005a53/raw/3e0e69e3196a661a3c557f421d33691318eefa01/zcash-build.sh", privileged: "false", sha256: "3af4d40d9d67f356a090ec2bd681a8cd56eccfc911e45d4598600a90ef50e3ac"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment