Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

699,098

Downloads of v 1.20.0.1:

427

Last Update:

14 May 2016

Package Maintainer(s):

Software Author(s):

  • Cabal Team

Tags:

cabal ghc haskell

Cabal

This is not the latest version of Cabal available.

  • 1
  • 2
  • 3

1.20.0.1 | Updated: 14 May 2016

Downloads:

699,098

Downloads of v 1.20.0.1:

427

Maintainer(s):

Software Author(s):

  • Cabal Team

Tags:

cabal ghc haskell

Cabal 1.20.0.1

This is not the latest version of Cabal available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

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://community.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

3. Copy Your Script

choco upgrade cabal -y --source="'INTERNAL REPO URL'" --version="'1.20.0.1'" [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="'INTERNAL REPO URL'" --version="'1.20.0.1'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install cabal
  win_chocolatey:
    name: cabal
    version: '1.20.0.1'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'cabal' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.20.0.1'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller cabal
{
    Name     = "cabal"
    Version  = "1.20.0.1"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'cabal':
  ensure   => '1.20.0.1',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator dtgm on 16 May 2016.

Description

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.


LICENSE.txt
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.
tools\cabal.exe
md5: A274328C260E99ED6B5C82DA2DEE1AC5 | sha1: D1C6E5E60A77DBCC652BB3CBA99665FBDB02F41C | sha256: 13E90B6372E44BB2ABAEABF5F565344B3CA313CD1C1B1096889BF133E7D8F435 | sha512: 9F8BA4EEF1C038F3A79C96E5106650B40980BB9782070548EEB643FC6CEF1928E64E11D41911DE4EF2BA5DB5B366C56A97EDBC454DAF99AB50C6EBED47EA0E87
tools\VERIFICATION.TXT
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.1/cabal-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.

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.

Add to Builder Version Downloads Last Updated Status
Cabal 3.10.1.1 48110 Thursday, March 23, 2023 Approved
Cabal 3.8.1.0 134167 Tuesday, August 9, 2022 Approved
Cabal 3.6.2.0 160545 Wednesday, October 13, 2021 Approved
Cabal 3.6.0.0 773 Wednesday, October 13, 2021 Approved
Cabal 3.4.1.0 7488 Wednesday, October 13, 2021 Approved
Cabal 3.4.0.1-rc3 5132 Thursday, December 24, 2020 Approved
Cabal 3.4.0.0 99948 Friday, February 26, 2021 Approved
Cabal 3.4.0.0-rc5 2673 Sunday, January 3, 2021 Exempted
Cabal 3.4.0.0-rc3 315 Saturday, October 10, 2020 Exempted
Cabal 3.2.0.0 112487 Friday, April 10, 2020 Approved
Cabal 3.0.0.0 31315 Thursday, August 29, 2019 Approved
Cabal 2.4.1.0 28756 Monday, November 26, 2018 Approved
Cabal 2.4.0.20180922 2550 Sunday, September 23, 2018 Approved
Cabal 2.4.0.0 1545 Saturday, September 22, 2018 Approved
Cabal 2.2.0.0 6390 Thursday, March 29, 2018 Approved
Cabal 2.0.0.1 2777 Tuesday, February 6, 2018 Approved
Cabal 2.0.0.0 5706 Thursday, August 17, 2017 Approved
Cabal 1.24.0.2 4651 Saturday, January 14, 2017 Approved
Cabal 1.24.0.0 5036 Saturday, May 14, 2016 Approved
Cabal 1.22.0.0 402 Saturday, May 14, 2016 Approved
Cabal 1.20.0.3 450 Tuesday, May 17, 2016 Approved
Cabal 1.20.0.2 455 Saturday, May 14, 2016 Approved
Cabal 1.20.0.1 427 Saturday, May 14, 2016 Approved
Cabal 1.18.0.3 423 Saturday, May 14, 2016 Approved
Cabal 1.18.0.2 400 Saturday, May 14, 2016 Approved
Cabal 1.18.0.1 446 Saturday, May 14, 2016 Approved
Cabal 0.14.0 420 Saturday, May 14, 2016 Approved
Cabal 0.10.2 404 Saturday, May 14, 2016 Approved
Cabal 0.8.2 453 Saturday, May 14, 2016 Approved
Cabal 0.8.0 414 Saturday, May 14, 2016 Approved
Cabal 0.6.4 422 Saturday, May 14, 2016 Approved
Cabal 0.6.2 465 Saturday, May 14, 2016 Approved
Cabal 0.6.0 466 Saturday, May 14, 2016 Approved

This package has no dependencies.

Discussion for the Cabal Package

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.
comments powered by Disqus