48 lines
1 KiB
Text
48 lines
1 KiB
Text
cabal-version: 2.2
|
|
name: ips
|
|
version: 0.1.0
|
|
synopsis: applies ips patches. remember those?
|
|
license: WTFPL
|
|
|
|
author: 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: https://git.rhiannon.website/rhi/ips.git
|
|
|
|
common deps
|
|
default-language: Haskell2010
|
|
default-extensions:
|
|
BangPatterns,
|
|
BlockArguments,
|
|
DerivingStrategies,
|
|
GeneralizedNewtypeDeriving,
|
|
NamedFieldPuns,
|
|
OverloadedStrings
|
|
build-depends:
|
|
base >= 4.14.1.0 && < 4.22,
|
|
bytestring >= 0.11.1.0 && < 0.13,
|
|
vector >= 0.12.2.0 && < 0.14,
|
|
attoparsec >= 0.13.2.5 && < 0.15,
|
|
primitive >= 0.7.1.0 && < 0.10
|
|
ghc-options: -Wall
|
|
|
|
library
|
|
import: deps
|
|
hs-source-dirs: src
|
|
exposed-modules: IPS
|
|
other-modules:
|
|
IPS.Word24,
|
|
IPS.Types,
|
|
IPS.Parse,
|
|
IPS.Apply
|
|
|
|
executable ips
|
|
import: deps
|
|
build-depends: ips
|
|
hs-source-dirs: main
|
|
main-is: ips.hs
|