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.
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.
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.