Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
180,687
Downloads of v 1.20.0.3:
334
Last Update:
17 May 2016
Package Maintainer(s):
Software Author(s):
- Cabal Team
Tags:
cabal ghc haskell
Cabal
This is not the latest version of Cabal available.
Downloads:
180,687
Downloads of v 1.20.0.3:
334
Maintainer(s):
Software Author(s):
- Cabal Team
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Cabal 1.20.0.3
This is not the latest version of Cabal available.
All Checks are Passing
2 Passing Test
To install Cabal, run the following command from the command line or from PowerShell:
To upgrade Cabal, run the following command from the command line or from PowerShell:
To uninstall Cabal, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download cabal --internalize --version=1.20.0.3 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade cabal -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade cabal -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure cabal installed
win_chocolatey:
name: cabal
state: present
version: 1.20.0.3
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'cabal' do
action :install
version '1.20.0.3'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: cabal,
Version: 1.20.0.3,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller cabal
{
Name = 'cabal'
Ensure = 'Present'
Version = '1.20.0.3'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'cabal':
provider => 'chocolatey',
ensure => '1.20.0.3',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install cabal version="1.20.0.3" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved by moderator dtgm on 17 May 2016.
Cabal is a system for building and packaging Haskell libraries and programs. It defines a common interface for package authors and distributors to easily build their applications in a portable way. Cabal is part of a larger infrastructure for distributing, organizing, and cataloging Haskell libraries and programs.
Specifically, the Cabal describes what a Haskell package is, how these packages interact with the language, and what Haskell implementations must to do to support packages. The Cabal also specifies some infrastructure (code) that makes it easy for tool authors to build and distribute conforming packages.
The Cabal is only one contribution to the larger goal. In particular, the Cabal says nothing about more global issues such as how authors decide where in the module name space their library should live; how users can find a package they want; how orphan packages find new owners; and so on.
Copyright (c) 2003-2008, Isaac Jones, Simon Marlow, Martin Sjögren,
Bjorn Bringert, Krasimir Angelov,
Malcolm Wallace, Ross Patterson,
Lemmih, Paolo Martini, Don Stewart,
Duncan Coutts
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of Isaac Jones nor the names of other
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
md5: DF357C91E8C146A07CB871C76AB5B744 | sha1: D350146F83287E1597DFC2E6DAAC5935DC75EB2B | sha256: 6B5516BA31CD8A0B3B40D5E381AE79718490115E6757E4E76D702AF5B3953040 | sha512: 48D6C3E1B4723195A48345A9689E00D94B6883A9606693EF2E9E259088935ECAA54B96B858E25208F38FAEC87347C9B0F3454E63FAC97C7596A76BF3AC3D55AD
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
1) Download binary from https://www.haskell.org/cabal/release/cabal-install-1.20.0.3/cabal-1.20.0.3-i386-unknown-mingw32.tar.gz
2) Pack with upx -9 to reduce size (version used http://upx.sourceforge.net/download/00-OLD-VERSIONS/upx307w.zip)
3) Compare MD5
Log in or click on link to see number of positives.
- cabal.exe (6b5516ba31cd) - ## / 56
- cabal.1.20.0.3.nupkg (941111b8e3a0) - ## / 57
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Cabal 3.4.0.1-rc3 | 2766 | Thursday, December 24, 2020 | Approved |
Cabal 3.4.0.0 | 48 | Friday, February 26, 2021 | Approved |
Cabal 3.4.0.0-rc5 | 1061 | Sunday, January 3, 2021 | Exempted |
Cabal 3.4.0.0-rc3 | 192 | Saturday, October 10, 2020 | Exempted |
Cabal 3.2.0.0 | 95810 | Friday, April 10, 2020 | Approved |
Cabal 3.0.0.0 | 23633 | Thursday, August 29, 2019 | Approved |
Cabal 2.4.1.0 | 25085 | Monday, November 26, 2018 | Approved |
Cabal 2.4.0.20180922 | 2441 | Sunday, September 23, 2018 | Approved |
Cabal 2.4.0.0 | 1307 | Saturday, September 22, 2018 | Approved |
Cabal 2.2.0.0 | 6276 | Thursday, March 29, 2018 | Approved |
Cabal 2.0.0.1 | 2656 | Tuesday, February 6, 2018 | Approved |
Cabal 2.0.0.0 | 5591 | Thursday, August 17, 2017 | Approved |
Cabal 1.24.0.2 | 4535 | Saturday, January 14, 2017 | Approved |
Cabal 1.24.0.0 | 4917 | Saturday, May 14, 2016 | Approved |
Cabal 1.22.0.0 | 290 | Saturday, May 14, 2016 | Approved |
Cabal 1.20.0.3 | 334 | Tuesday, May 17, 2016 | Approved |
Cabal 1.20.0.2 | 331 | Saturday, May 14, 2016 | Approved |
Cabal 1.20.0.1 | 320 | Saturday, May 14, 2016 | Approved |
Cabal 1.18.0.3 | 307 | Saturday, May 14, 2016 | Approved |
Cabal 1.18.0.2 | 300 | Saturday, May 14, 2016 | Approved |
Cabal 1.18.0.1 | 323 | Saturday, May 14, 2016 | Approved |
Cabal 0.14.0 | 307 | Saturday, May 14, 2016 | Approved |
Cabal 0.10.2 | 286 | Saturday, May 14, 2016 | Approved |
Cabal 0.8.2 | 314 | Saturday, May 14, 2016 | Approved |
Cabal 0.8.0 | 288 | Saturday, May 14, 2016 | Approved |
Cabal 0.6.4 | 294 | Saturday, May 14, 2016 | Approved |
Cabal 0.6.2 | 348 | Saturday, May 14, 2016 | Approved |
Cabal 0.6.0 | 327 | Saturday, May 14, 2016 | Approved |
Copyright (c) 2003-2008, Isaac Jones, Simon Marlow, Martin Sjögren, Bjorn Bringert, Krasimir Angelov, Malcolm Wallace, Ross Patterson, Lemmih, Paolo Martini, Don Stewart, Duncan Coutts
This package has no dependencies.
Ground Rules:
- This discussion is only about Cabal and the Cabal package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Cabal, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.