Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor FieldGrammar / Described #6791

Merged
merged 3 commits into from
May 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cabal/Cabal-QuickCheck/src/Test/QuickCheck/Instances/Cabal.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{-# LANGUAGE CPP #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE TypeOperators #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
module Test.QuickCheck.Instances.Cabal () where
Expand All @@ -11,8 +11,8 @@ import Test.QuickCheck

import Distribution.CabalSpecVersion
import Distribution.Compiler
import Distribution.FieldGrammar.Newtypes
import Distribution.ModuleName
import Distribution.Parsec.Newtypes
import Distribution.Simple.Flag (Flag (..))
import Distribution.SPDX
import Distribution.System
Expand Down
26 changes: 26 additions & 0 deletions Cabal/Cabal-described/Cabal-described.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
cabal-version: 2.2
name: Cabal-described
version: 3.3.0.0
synopsis: Described functionality for types in Cabal
category: Testing, Parsec
description: Provides rere bindings

library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
build-depends:
, base
, Cabal ^>=3.3.0.0
, containers
, pretty
, QuickCheck
, rere ^>=0.1
, tasty
, tasty-quickcheck
, transformers

exposed-modules:
Distribution.Described
Distribution.Utils.CharSet
Distribution.Utils.GrammarRegex
Loading