Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
254 views
in Technique[技术] by (71.8m points)

haskell - How to Prevent Stack from Downloading Files

I would like to be able to run Stack at work. It would have to run on a server which is not allowed to download any files. Only Ubuntu packages are allowed.

That's fine for me, since I can install Stack, GHC, and many libraries through Ubuntu. I've tested this out on my own Ubuntu machine, and this is what I had to do to make sure nothing was downloaded.

config.yaml

install-ghc: false
system-ghc: true

package-indices:
- name: NoDownloads
  download-prefix: localhost
  http: localhost

stack.yaml

resolver: ghc-8.0.2
packages:
- .

I set up this intentionally bad package index so Stack fails every time it tries to download a package that isn't already present on the server. This works, but feels like a ugly hack. Is there something better I can do?

question from:https://stackoverflow.com/questions/65861752/how-to-prevent-stack-from-downloading-files

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...