-- Initial yaml-overrides.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: yaml-union version: 0.0.3 synopsis: Read multiple yaml-files and override fields recursively -- description: homepage: https://github.com/michelk/yaml-union.hs license: BSD3 license-file: LICENSE author: Michel Kuhlmann maintainer: michel@kuhlmanns.info -- copyright: category: Data build-type: Simple -- extra-source-files: cabal-version: >=1.10 data-files: README.md extra-source-files: changelog.md, stack.yaml, yaml-union.1 library exposed-modules: Data.Yaml.Union , Data.Yaml.Dirs -- other-modules: -- other-extensions: build-depends: base >= 4 && < 5 , unordered-containers , yaml , filepath , aeson , text , vector , directory , unix , bytestring , vector hs-source-dirs: src default-language: Haskell2010 -- ghc-options: -Wall test-suite test type: exitcode-stdio-1.0 main-is: Spec.hs other-modules: UnionSpec hs-source-dirs: spec build-depends: QuickCheck , base , hspec , quickcheck-instances , scientific , text , unordered-containers , vector , yaml , yaml-union default-language: Haskell2010 ghc-options: -Wall executable yaml-validate build-depends: base , bytestring , yaml hs-source-dirs: bin Main-Is: yaml-validate.hs default-language: Haskell2010 ghc-options: -Wall executable yaml-union build-depends: base , bytestring , optparse-applicative , yaml , yaml-union , directory hs-source-dirs: bin Main-Is: yaml-union.hs default-language: Haskell2010 ghc-options: -Wall executable yaml-concat build-depends: base , bytestring , optparse-applicative , yaml , yaml-union , directory hs-source-dirs: bin Main-Is: yaml-union.hs default-language: Haskell2010 ghc-options: -Wall