cabal file cleanup
This commit is contained in:
parent
fff25999c9
commit
4384e70426
1 changed files with 11 additions and 13 deletions
24
ips.cabal
24
ips.cabal
|
@ -7,32 +7,29 @@ license: WTFPL
|
||||||
author: rhiannon morris <rhi@rhiannon.website>
|
author: rhiannon morris <rhi@rhiannon.website>
|
||||||
maintainer: rhiannon morris <rhi@rhiannon.website>
|
maintainer: rhiannon morris <rhi@rhiannon.website>
|
||||||
|
|
||||||
|
homepage: https://git.rhiannon.website/rhi/ips
|
||||||
|
bug-reports: https://git.rhiannon.website/rhi/ips/issues
|
||||||
|
|
||||||
|
source-repository head
|
||||||
|
type: git
|
||||||
|
location: git://git.rhiannon.website/rhi/ips.git
|
||||||
|
|
||||||
common deps
|
common deps
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
default-extensions:
|
default-extensions:
|
||||||
BangPatterns,
|
BangPatterns,
|
||||||
BlockArguments,
|
BlockArguments,
|
||||||
DerivingStrategies,
|
DerivingStrategies,
|
||||||
DuplicateRecordFields,
|
|
||||||
FlexibleContexts,
|
|
||||||
GeneralizedNewtypeDeriving,
|
GeneralizedNewtypeDeriving,
|
||||||
NamedFieldPuns,
|
NamedFieldPuns,
|
||||||
OverloadedStrings,
|
OverloadedStrings
|
||||||
TupleSections
|
|
||||||
build-depends:
|
build-depends:
|
||||||
base ^>= 4.14.1.0,
|
base ^>= 4.14.1.0,
|
||||||
bytestring ^>= 0.11.1.0,
|
bytestring ^>= 0.11.1.0,
|
||||||
vector ^>= 0.12.2.0,
|
vector ^>= 0.12.2.0,
|
||||||
attoparsec ^>= 0.13.2.5,
|
attoparsec ^>= 0.13.2.5,
|
||||||
primitive ^>= 0.7.1.0
|
primitive ^>= 0.7.1.0
|
||||||
ghc-options:
|
ghc-options: -Wall
|
||||||
-Wall
|
|
||||||
|
|
||||||
common exe
|
|
||||||
build-depends:
|
|
||||||
ips
|
|
||||||
ghc-options:
|
|
||||||
-threaded -rtsopts -with-rtsopts=-N
|
|
||||||
|
|
||||||
library
|
library
|
||||||
import: deps
|
import: deps
|
||||||
|
@ -45,6 +42,7 @@ library
|
||||||
IPS.Apply
|
IPS.Apply
|
||||||
|
|
||||||
executable ips
|
executable ips
|
||||||
import: deps, exe
|
import: deps
|
||||||
|
build-depends: ips
|
||||||
hs-source-dirs: main
|
hs-source-dirs: main
|
||||||
main-is: ips.hs
|
main-is: ips.hs
|
||||||
|
|
Loading…
Reference in a new issue