• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.docker/H26-Aug-2021-535474

.github/H26-Aug-2021-1,1531,124

Cabal/H03-May-2022-94,30168,382

boot/H26-Aug-2021-1,092914

cabal-dev-scripts/H26-Aug-2021-1,041802

cabal-install/H26-Aug-2021-75,59253,709

cabal-testsuite/H26-Aug-2021-24,88619,372

changelog.d/H26-Aug-2021-32

license-list-data/H26-Aug-2021-15,43315,433

solver-benchmarks/H26-Aug-2021-528436

travis/H26-Aug-2021-317206

.arcconfigH A D19-Apr-202099 54

.dockerignoreH A D22-Apr-2020451 3525

.ghciH A D19-Apr-202053 32

.ghcidH A D19-Apr-202033 21

.gitattributesH A D22-Apr-2020259 75

.gitignoreH A D25-May-2021691 6349

.mailmapH A D19-Apr-202013.2 KiB167165

.mention-botH A D19-Apr-202070 76

.travis.ymlH A D25-May-20216.7 KiB181162

AUTHORSH A D19-Apr-202016.4 KiB345344

CONTRIBUTING.mdH A D25-May-202110.3 KiB253194

LICENSEH A D25-May-20211.6 KiB3527

MakefileH A D25-May-20216.3 KiB169102

README.mdH A D25-May-20212.2 KiB5033

appveyor-retry.cmdH A D19-Apr-2020607 2218

appveyor.ymlH A D25-May-20212.2 KiB6555

cabal.projectH A D25-May-2021759 3025

cabal.project.libonlyH A D25-May-2021522 2017

cabal.project.local.travisH A D25-May-2021919 3328

cabal.project.metaH A D19-Apr-202047 32

cabal.project.releaseH A D25-May-202173 54

cabal.project.validateH A D25-May-2021306 129

cabal.project.validate.libonlyH A D25-May-2021207 107

generics-sop-lens.hsH A D22-Apr-20203.7 KiB10477

ghc-packagesH A D19-Apr-20207 31

release-checklist.mdH A D22-Apr-2020450 128

stack.yamlH A D19-Apr-2020243 1716

travis-bootstrap.shH A D25-May-20212 KiB5827

travis-common.shH A D25-May-20211.6 KiB5434

travis-deploy.shH A D25-May-20211,020 2824

travis-install.shH A D25-May-20213.1 KiB8973

travis-meta.shH A D25-May-2021649 268

travis-script.shH A D25-May-20216.4 KiB19889

travis-solver-debug-flags.shH A D25-May-2021278 103

travis-stack.shH A D25-May-2021524 2212

validate.shH A D25-May-202113.7 KiB503382

README.md

1# Cabal [![Hackage version](https://img.shields.io/hackage/v/Cabal.svg?label=Hackage)](https://hackage.haskell.org/package/Cabal) [![Stackage version](https://www.stackage.org/package/Cabal/badge/lts?label=Stackage)](https://www.stackage.org/package/Cabal) [![Build Status](https://secure.travis-ci.org/haskell/cabal.svg?branch=master)](http://travis-ci.org/haskell/cabal) [![Windows build status](https://ci.appveyor.com/api/projects/status/github/haskell/cabal?branch=master&svg=true)](https://ci.appveyor.com/project/23Skidoo/cabal) [![Documentation Status](http://readthedocs.org/projects/cabal/badge/?version=latest)](http://cabal.readthedocs.io/en/latest/?badge=latest)
2
3<img src="https://www.haskell.org/cabal/images/Cabal-light.png" align="right">
4
5This Cabal Git repository contains the following packages:
6
7 * [Cabal](Cabal/README.md): the Cabal library package ([license](Cabal/LICENSE))
8 * [cabal-install](cabal-install/README.md): the package containing the `cabal` tool ([license](cabal-install/LICENSE))
9
10The canonical upstream repository is located at
11https://github.com/haskell/cabal.
12
13Installing Cabal (by downloading the binary)
14--------------------------------------------
15
16Prebuilt binary releases can be obtained from https://www.haskell.org/cabal/download.html.
17The `cabal-install` binary download for your platform should contain the `cabal` executable.
18
19Installing Cabal (with cabal)
20-----------------------------
21
22Assuming that you have a pre-existing, older version of `cabal-install`,
23run:
24
25~~~~
26cabal install cabal-install
27~~~~
28
29To get the latest version of `cabal-install`. (You may want to `cabal
30update` first.)
31
32To install the latest version from the Git repository, clone the
33Git repository and then run:
34
35~~~~
36(cd Cabal; cabal install)
37(cd cabal-install; cabal install)
38~~~~
39
40Installing Cabal (without cabal)
41--------------------------------
42
43Assuming you don't have a pre-existing copy of `cabal-install`, run:
44
45~~~~
46cabal-install $ ./bootstrap.sh # running ./bootstrap.sh from within in cabal-install folder.
47~~~~
48
49For more details, and non-unix like systems, see the [README.md in cabal-install](cabal-install/README.md) and [Contributing Guidelines](CONTRIBUTING.md).
50