3

Does there exist an analog of Ruby Bundler's Gemfile and bundle install, bundle exec commands for Haskell Cabal?

Here is a related question, but it seems to be mostly about project scaffolding.

Community
  • 1
  • 1
Alexey
  • 3,843
  • 6
  • 30
  • 44

1 Answers1

1

Cabal v1.20 announced a new feature called "freeze" to make builds more reproducible and reduce proverbial "cabal hell".

Source: http://blog.johantibell.com/2014/04/announcing-cabal-120.html

This offers almost the same functionality as bundle install.

Badri
  • 2,212
  • 3
  • 25
  • 26