Skip to content

Commit a30f022

Browse files
committed
Releases Vagrantfiles: install ncurses-devel on CentOS
1 parent 083797a commit a30f022

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

etc/vagrant/centos-6-i386/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Vagrant.configure(2) do |config|
99
config.vm.provision "shell", run: "always", inline: <<-SHELL
1010
set -xe
1111
export PATH=/usr/local/bin:$PATH
12-
yum -y install perl make automake gcc gmp-devel zlib-devel tar which git xz
12+
yum -y install perl make automake gcc gmp-devel zlib-devel tar which git xz ncurses-devel
1313
if ! which stack; then
1414
curl -sSL $(curl -sSL https://api.github.com/repos/commercialhaskell/stack/releases/latest \
1515
|grep '"browser_download_url": ".*/stack-[0-9\\.]\\+-i386-linux-gmp4.gz"' \

etc/vagrant/centos-6-x86_64/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Vagrant.configure(2) do |config|
1010
set -xe
1111
export PATH=/usr/local/bin:$PATH
1212
yum -y install epel-release
13-
yum -y install perl make automake gcc gmp-devel zlib-devel rpm-build tar which git xz python-boto deltarpm python-deltarpm rpm-build rpm-sign
13+
yum -y install perl make automake gcc gmp-devel zlib-devel rpm-build tar which git xz python-boto deltarpm python-deltarpm rpm-build rpm-sign ncurses-devel
1414
if ! [[ -f /usr/local/bin/stack ]]; then
1515
curl -sSL https://s3.amazonaws.com/download.fpcomplete.com/centos/6/fpco.repo >/etc/yum.repos.d/fpco.repo
1616
yum -y install stack

etc/vagrant/centos-7-x86_64/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Vagrant.configure(2) do |config|
1010
set -xe
1111
export PATH=/usr/local/bin:$PATH
1212
yum -y install epel-release
13-
yum -y install perl make automake gcc gmp-devel zlib-devel tar which git python-boto deltarpm python-deltarpm rpm-build rpm-sign
13+
yum -y install perl make automake gcc gmp-devel zlib-devel tar which git python-boto deltarpm python-deltarpm rpm-build rpm-sign ncurses-devel
1414
if ! [[ -f /usr/local/bin/stack ]]; then
1515
curl -sSL https://s3.amazonaws.com/download.fpcomplete.com/centos/7/fpco.repo >/etc/yum.repos.d/fpco.repo
1616
yum -y install stack

0 commit comments

Comments
 (0)