Skip to content

Commit dbb2d0e

Browse files
authored
Merge pull request #6791 from phadej/describe-refactor-b
Refactor FieldGrammar / Described
2 parents 23a1150 + f7ee3c1 commit dbb2d0e

File tree

74 files changed

+1233
-1091
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+1233
-1091
lines changed

Cabal/Cabal-QuickCheck/src/Test/QuickCheck/Instances/Cabal.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{-# LANGUAGE CPP #-}
1+
{-# LANGUAGE CPP #-}
22
{-# LANGUAGE TypeOperators #-}
33
{-# OPTIONS_GHC -fno-warn-orphans #-}
44
module Test.QuickCheck.Instances.Cabal () where
@@ -11,8 +11,8 @@ import Test.QuickCheck
1111

1212
import Distribution.CabalSpecVersion
1313
import Distribution.Compiler
14+
import Distribution.FieldGrammar.Newtypes
1415
import Distribution.ModuleName
15-
import Distribution.Parsec.Newtypes
1616
import Distribution.Simple.Flag (Flag (..))
1717
import Distribution.SPDX
1818
import Distribution.System
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
cabal-version: 2.2
2+
name: Cabal-described
3+
version: 3.3.0.0
4+
synopsis: Described functionality for types in Cabal
5+
category: Testing, Parsec
6+
description: Provides rere bindings
7+
8+
library
9+
default-language: Haskell2010
10+
hs-source-dirs: src
11+
ghc-options: -Wall
12+
build-depends:
13+
, base
14+
, Cabal ^>=3.3.0.0
15+
, containers
16+
, pretty
17+
, QuickCheck
18+
, rere ^>=0.1
19+
, tasty
20+
, tasty-quickcheck
21+
, transformers
22+
23+
exposed-modules:
24+
Distribution.Described
25+
Distribution.Utils.CharSet
26+
Distribution.Utils.GrammarRegex

0 commit comments

Comments
 (0)