Difference between revisions of "Cabal"

From HaskellWiki
Jump to navigation Jump to search
(→‎Information for package developers: Added a link to "Cabal/How to install a Cabal package remotely")
(→‎Information for package developers: Added a link to "Building a shared library in Cabal")
Line 22: Line 22:
 
== Information for package developers ==
 
== Information for package developers ==
 
*[[How to write a Haskell program]]
 
*[[How to write a Haskell program]]
  +
*[http://wewantarock.wordpress.com/2010/11/03/building-a-shared-library-in-cabal/ Building a shared library in Cabal]
 
*[[Cabal/Developer-FAQ|FAQ: Frequently Asked Questions of package authors]]
 
*[[Cabal/Developer-FAQ|FAQ: Frequently Asked Questions of package authors]]
 
*[[Cabal/How to install a Cabal package remotely | How to install a Cabal package remotely]]
 
*[[Cabal/How to install a Cabal package remotely | How to install a Cabal package remotely]]

Revision as of 23:11, 7 November 2013

The Haskell Cabal:

The Common Architecture for Building Applications and Libraries

http://www.haskell.org/cabal/

Summary

  • Cabal is a package and build system. Cabal is only involved in the creation of packages and the building of their contents. It does not manage packages.
  • Cabal-Install installs cabal packages. It is distinct from Cabal (the build system). This often confuses new users. Furthermore, Cabal-Install is not a fully featured package manager. For example, it cannot install non cabal packaged dependencies, it cannot uninstall packages, nor can it automatically upgrade installations.

Information for package users

Information for package developers