Skip to content

Commit

Permalink
check in .cabal file
Browse files Browse the repository at this point in the history
  • Loading branch information
byorgey committed Jul 11, 2023
1 parent c2c6a56 commit fe159ac
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 48 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.stack-work/
diagrams-braille.cabal
*~
dist-newstyle/
69 changes: 69 additions & 0 deletions diagrams-braille.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
cabal-version: 1.12
name: diagrams-braille
version: 0.1.1
synopsis: Braille diagrams with plain text
description: Please see the README at <https://github.com/diagrams/diagrams-braille#readme>
category: Graphics
homepage: https://github.com/diagrams/diagrams-braille#readme
bug-reports: https://github.com/diagrams/diagrams-braille/issues
author: Mario Lang
maintainer: [email protected], [email protected]
copyright: 2018 Mario Lang
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
tested-with: GHC ==8.10.7 || ==9.0.2 || ==9.2.7 || ==9.4.5 || ==9.6.1

source-repository head
type: git
location: https://github.com/diagrams/diagrams-braille

library
exposed-modules:
Diagrams.Backend.Braille
Diagrams.Backend.Braille.CmdLine
other-modules:
Paths_diagrams_braille
hs-source-dirs:
src
build-depends:
JuicyPixels
, Rasterific >=0.7.4 && <0.8
, base >=4.7 && <5
, containers
, diagrams-core >=1.4 && <1.6
, diagrams-lib ==1.4.*
, diagrams-rasterific ==1.4.*
, filepath
, hashable
, lens
, mtl
, optparse-applicative
, time
default-language: Haskell2010

executable brldia
main-is: Main.hs
other-modules:
Paths_diagrams_braille
hs-source-dirs:
app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
JuicyPixels
, Rasterific >=0.7.4 && <0.8
, base >=4.7 && <5
, containers
, diagrams-braille
, diagrams-core >=1.4 && <1.6
, diagrams-lib ==1.4.*
, diagrams-rasterific ==1.4.*
, filepath
, hashable
, lens
, mtl
, optparse-applicative
, time
default-language: Haskell2010
47 changes: 0 additions & 47 deletions package.yaml

This file was deleted.

0 comments on commit fe159ac

Please sign in to comment.