Compare commits
3 Commits
master
...
extended-v
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
00270d4bc7 | ||
|
|
f07769687b | ||
|
|
67bb87ceff |
20
Setup.hs
20
Setup.hs
@ -1,13 +1,25 @@
|
||||
{-# LANGUAGE CPP #-}
|
||||
|
||||
module Main where
|
||||
|
||||
import Distribution.Simple
|
||||
import Data.Encoding.Preprocessor.Mapping
|
||||
import Data.Encoding.Preprocessor.XMLMappingBuilder
|
||||
|
||||
#if MIN_VERSION_Cabal(2,0,0)
|
||||
main = defaultMainWithHooks (simpleUserHooks
|
||||
{hookedPreProcessors = (("mapping",\_ _ -> mappingPreprocessor)
|
||||
:("mapping2",\_ _ -> mappingPreprocessor)
|
||||
:("xml",\_ _ -> xmlPreprocessor)
|
||||
:(hookedPreProcessors simpleUserHooks)
|
||||
{hookedPreProcessors = ( ("mapping" , \_ _ _ -> mappingPreprocessor)
|
||||
: ("mapping2", \_ _ _ -> mappingPreprocessor)
|
||||
: ("xml" , \_ _ _ -> xmlPreprocessor)
|
||||
: (hookedPreProcessors simpleUserHooks)
|
||||
)
|
||||
})
|
||||
#else
|
||||
main = defaultMainWithHooks (simpleUserHooks
|
||||
{hookedPreProcessors = ( ("mapping" , \_ _ -> mappingPreprocessor)
|
||||
: ("mapping2", \_ _ -> mappingPreprocessor)
|
||||
: ("xml" , \_ _ -> xmlPreprocessor)
|
||||
: (hookedPreProcessors simpleUserHooks)
|
||||
)
|
||||
})
|
||||
#endif
|
||||
|
||||
@ -36,7 +36,7 @@ Source-Repository this
|
||||
|
||||
Custom-Setup
|
||||
Setup-Depends: base >=3 && <5,
|
||||
Cabal >=1.24 && <1.25,
|
||||
Cabal >=1.24 && <2.5,
|
||||
containers,
|
||||
filepath,
|
||||
ghc-prim,
|
||||
@ -47,11 +47,11 @@ Library
|
||||
base >=4 && <5,
|
||||
binary >=0.7 && <0.10,
|
||||
bytestring >=0.9 && <0.11,
|
||||
containers >=0.4 && <0.6,
|
||||
containers >=0.4 && <0.7,
|
||||
extensible-exceptions >=0.1 && <0.2,
|
||||
ghc-prim >=0.3 && <0.6,
|
||||
mtl >=2.0 && <2.3,
|
||||
regex-compat >=0.71 && <0.95
|
||||
regex-compat >=0.71 && <0.96
|
||||
|
||||
Extensions: CPP
|
||||
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
# resolver:
|
||||
# name: custom-snapshot
|
||||
# location: "./custom-snapshot.yaml"
|
||||
resolver: lts-8.22
|
||||
resolver: lts-14.6
|
||||
|
||||
# User packages to be built.
|
||||
# Various formats can be used as shown in the example below.
|
||||
@ -36,10 +36,11 @@ resolver: lts-8.22
|
||||
# non-dependency (i.e. a user package), and its test suites and benchmarks
|
||||
# will not be run. This is useful for tweaking upstream packages.
|
||||
packages:
|
||||
- '.'
|
||||
- '.'
|
||||
# Dependency packages to be pulled from upstream that are not in the resolver
|
||||
# (e.g., acme-missiles-0.3)
|
||||
extra-deps: []
|
||||
extra-deps:
|
||||
- HaXml-1.25.5
|
||||
|
||||
# Override default flag values for local packages and extra-deps
|
||||
flags: {}
|
||||
@ -63,4 +64,4 @@ extra-package-dbs: []
|
||||
# extra-lib-dirs: [/path/to/dir]
|
||||
#
|
||||
# Allow a newer minor version of GHC than the snapshot specifies
|
||||
# compiler-check: newer-minor
|
||||
# compiler-check: newer-minor
|
||||
|
||||
19
stack.yaml.lock
Normal file
19
stack.yaml.lock
Normal file
@ -0,0 +1,19 @@
|
||||
# This file was autogenerated by Stack.
|
||||
# You should not edit this file by hand.
|
||||
# For more information, please see the documentation at:
|
||||
# https://docs.haskellstack.org/en/stable/lock_files
|
||||
|
||||
packages:
|
||||
- completed:
|
||||
hackage: HaXml-1.25.5@sha256:4f8534cda290b3d0a76b4ca5c4b9aa20902dcf029ddd50998d07c5dd608ad6f6,4420
|
||||
pantry-tree:
|
||||
size: 4076
|
||||
sha256: 9682020b148433c41f5efee327b66708875015df8d4b3d48f875ac21f8222e1b
|
||||
original:
|
||||
hackage: HaXml-1.25.5
|
||||
snapshots:
|
||||
- completed:
|
||||
size: 524127
|
||||
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/14/6.yaml
|
||||
sha256: dc70dfb45e2c32f54719819bd055f46855dd4b3bd2e58b9f3f38729a2d553fbb
|
||||
original: lts-14.6
|
||||
Loading…
Reference in New Issue
Block a user