Compare commits
3 Commits
master
...
extended-v
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
00270d4bc7 | ||
|
|
f07769687b | ||
|
|
67bb87ceff |
12
Setup.hs
12
Setup.hs
@ -1,9 +1,20 @@
|
|||||||
|
{-# LANGUAGE CPP #-}
|
||||||
|
|
||||||
module Main where
|
module Main where
|
||||||
|
|
||||||
import Distribution.Simple
|
import Distribution.Simple
|
||||||
import Data.Encoding.Preprocessor.Mapping
|
import Data.Encoding.Preprocessor.Mapping
|
||||||
import Data.Encoding.Preprocessor.XMLMappingBuilder
|
import Data.Encoding.Preprocessor.XMLMappingBuilder
|
||||||
|
|
||||||
|
#if MIN_VERSION_Cabal(2,0,0)
|
||||||
|
main = defaultMainWithHooks (simpleUserHooks
|
||||||
|
{hookedPreProcessors = ( ("mapping" , \_ _ _ -> mappingPreprocessor)
|
||||||
|
: ("mapping2", \_ _ _ -> mappingPreprocessor)
|
||||||
|
: ("xml" , \_ _ _ -> xmlPreprocessor)
|
||||||
|
: (hookedPreProcessors simpleUserHooks)
|
||||||
|
)
|
||||||
|
})
|
||||||
|
#else
|
||||||
main = defaultMainWithHooks (simpleUserHooks
|
main = defaultMainWithHooks (simpleUserHooks
|
||||||
{hookedPreProcessors = ( ("mapping" , \_ _ -> mappingPreprocessor)
|
{hookedPreProcessors = ( ("mapping" , \_ _ -> mappingPreprocessor)
|
||||||
: ("mapping2", \_ _ -> mappingPreprocessor)
|
: ("mapping2", \_ _ -> mappingPreprocessor)
|
||||||
@ -11,3 +22,4 @@ main = defaultMainWithHooks (simpleUserHooks
|
|||||||
: (hookedPreProcessors simpleUserHooks)
|
: (hookedPreProcessors simpleUserHooks)
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
#endif
|
||||||
|
|||||||
@ -36,7 +36,7 @@ Source-Repository this
|
|||||||
|
|
||||||
Custom-Setup
|
Custom-Setup
|
||||||
Setup-Depends: base >=3 && <5,
|
Setup-Depends: base >=3 && <5,
|
||||||
Cabal >=1.24 && <1.25,
|
Cabal >=1.24 && <2.5,
|
||||||
containers,
|
containers,
|
||||||
filepath,
|
filepath,
|
||||||
ghc-prim,
|
ghc-prim,
|
||||||
@ -47,11 +47,11 @@ Library
|
|||||||
base >=4 && <5,
|
base >=4 && <5,
|
||||||
binary >=0.7 && <0.10,
|
binary >=0.7 && <0.10,
|
||||||
bytestring >=0.9 && <0.11,
|
bytestring >=0.9 && <0.11,
|
||||||
containers >=0.4 && <0.6,
|
containers >=0.4 && <0.7,
|
||||||
extensible-exceptions >=0.1 && <0.2,
|
extensible-exceptions >=0.1 && <0.2,
|
||||||
ghc-prim >=0.3 && <0.6,
|
ghc-prim >=0.3 && <0.6,
|
||||||
mtl >=2.0 && <2.3,
|
mtl >=2.0 && <2.3,
|
||||||
regex-compat >=0.71 && <0.95
|
regex-compat >=0.71 && <0.96
|
||||||
|
|
||||||
Extensions: CPP
|
Extensions: CPP
|
||||||
|
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
# resolver:
|
# resolver:
|
||||||
# name: custom-snapshot
|
# name: custom-snapshot
|
||||||
# location: "./custom-snapshot.yaml"
|
# location: "./custom-snapshot.yaml"
|
||||||
resolver: lts-8.22
|
resolver: lts-14.6
|
||||||
|
|
||||||
# User packages to be built.
|
# User packages to be built.
|
||||||
# Various formats can be used as shown in the example below.
|
# Various formats can be used as shown in the example below.
|
||||||
@ -39,7 +39,8 @@ packages:
|
|||||||
- '.'
|
- '.'
|
||||||
# Dependency packages to be pulled from upstream that are not in the resolver
|
# Dependency packages to be pulled from upstream that are not in the resolver
|
||||||
# (e.g., acme-missiles-0.3)
|
# (e.g., acme-missiles-0.3)
|
||||||
extra-deps: []
|
extra-deps:
|
||||||
|
- HaXml-1.25.5
|
||||||
|
|
||||||
# Override default flag values for local packages and extra-deps
|
# Override default flag values for local packages and extra-deps
|
||||||
flags: {}
|
flags: {}
|
||||||
|
|||||||
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