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

Fix warnings from GHC and Cabal #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
28 changes: 14 additions & 14 deletions GenericPretty.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Version: 1.2.2
Synopsis: A generic, derivable, haskell pretty printer.

-- A longer description of the package.
Description:
Description:
GenericPretty is a Haskell library that supports automatic
derivation of pretty printing functions on user defined data
types.
Expand Down Expand Up @@ -43,21 +43,21 @@ Description:
.
For information about the functions exported by the package please see
the API linked further down this page.

For examples of usage, both basic and more complex see the README file and
the haskell source code files in the TestSuite folder, both included in the package.

Finally for installation instructions also see the README file or this page:
<http://www.haskell.org/haskellwiki/Cabal/How_to_install_a_Cabal_package>

-- URL for the project homepage or repository.
Homepage: https://github.com/RazvanRanca/GenericPretty

-- The license under which the package is released.
License: BSD3

-- The file containing the license text.
License-file: LICENSE
License-file: LICENSE

-- The package author(s).
Author: Razvan Ranca
Expand All @@ -67,15 +67,15 @@ Author: Razvan Ranca
Maintainer: [email protected]

-- A copyright notice.
-- Copyright:
-- Copyright:

Category: Text, Generics, Pretty Printer

Build-type: Simple

-- Extra files to be distributed with the package, such as examples or
-- a README.
Extra-source-files: README TestSuite\SimpleTest.hs TestSuite\Tests.hs TestSuite\CustomTest.hs TestSuite\ZigZagTest.hs
Extra-source-files: README TestSuite/SimpleTest.hs TestSuite/Tests.hs TestSuite/CustomTest.hs TestSuite/ZigZagTest.hs

-- Constraint on the version of Cabal needed to build this package.
Cabal-version: >=1.6
Expand All @@ -84,16 +84,16 @@ Cabal-version: >=1.6
Library
-- Modules exported by the library.
Exposed-modules: Text.PrettyPrint.GenericPretty

-- Packages needed in order to build this package.
Build-depends: base >= 3 && < 5, ghc-prim, pretty
Build-depends: base >= 3 && < 5, ghc-prim, pretty

-- Modules not exported by this package.
-- Other-modules:
-- Other-modules:

-- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source.
-- Build-tools:
-- Build-tools:

source-repository head
type: git
location: [email protected]:RazvanRanca/GenericPretty.git
Loading