-
Notifications
You must be signed in to change notification settings - Fork 701
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
21 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
synopsis: Fix and improve list parser of cabal init cli | ||
packages: cabal-install | ||
prs: #8663 | ||
|
||
description: { | ||
Occurrences of 'Flag [a]' seem to behave in an unexpected way. The monoid | ||
instance of 'Flag' is right associative and discard the value on the | ||
left, but we want to merge the contents of 'Flag'. | ||
|
||
Permits: | ||
- cabal init -d base -d vector -d containers | ||
|
||
Fixes for all Flag '[a]' the cli parser in cabal init. Adds cli parser tests. | ||
|
||
Adds the feature to specify a comma-separated list of dependencies: | ||
- cabal init -d base,vector,containers | ||
|
||
} |