Skip to content

Commit

Permalink
Add etc/vagrant/arch-x86_64/Vagrantfile
Browse files Browse the repository at this point in the history
  • Loading branch information
borsboom committed Jan 17, 2017
1 parent 64c0914 commit 09a5f59
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions etc/vagrant/arch-x86_64/Vagrantfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Vagrant.configure(2) do |config|
config.vm.box = "wholebits/arch-64"
#@@@ config.vm.synced_folder ENV['STACK_BUILD_DIR'], "/vagrant-build", type: "rsync", rsync__verbose: true, rsync__exclude: [".stack-work/", "_release/", ".cabal-sandbox/", "cabal.sandbox.config", "dist/"], rsync__args: ["--verbose", "--archive", "--delete", "-z"]
#@@@ config.vm.synced_folder "../../..", "/vagrant", type: "rsync", rsync__verbose: true, rsync__exclude: [".stack-work/", "_release/", ".cabal-sandbox/", "cabal.sandbox.config", "dist/"], rsync__args: ["--verbose", "--archive", "--delete", "-z"]
config.vm.provider "virtualbox" do |vb|
vb.memory = "3072"
end
config.ssh.forward_agent = true
config.vm.provision "shell", inline: <<-SHELL
set -xe
pacman --noconfirm -Syu ghc happy alex git automake autoconf libtool gcc make perl python python-sphinx docbook-utils patch file bzip2 xz cabal-install
SHELL
end

0 comments on commit 09a5f59

Please sign in to comment.