47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
name: hpath
|
|
version: 0.11.0
|
|
synopsis: Support for well-typed paths
|
|
description: Support for well-typed paths, utilizing ByteString under the hood.
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Julian Ospald <hasufell@posteo.de>
|
|
maintainer: Julian Ospald <hasufell@posteo.de>
|
|
copyright: Julian Ospald 2016
|
|
category: Filesystem
|
|
build-type: Simple
|
|
cabal-version: 1.14
|
|
tested-with: GHC==7.10.3
|
|
, GHC==8.0.2
|
|
, GHC==8.2.2
|
|
, GHC==8.4.4
|
|
, GHC==8.6.5
|
|
, GHC==8.8.1
|
|
extra-source-files: README.md
|
|
CHANGELOG
|
|
|
|
library
|
|
if os(windows)
|
|
build-depends: unbuildable<0
|
|
buildable: False
|
|
hs-source-dirs: src/
|
|
default-language: Haskell2010
|
|
if impl(ghc >= 8.0)
|
|
ghc-options: -Wall -Wno-redundant-constraints
|
|
else
|
|
ghc-options: -Wall
|
|
exposed-modules: HPath
|
|
other-modules: HPath.Internal
|
|
build-depends: base >= 4.8 && <5
|
|
, bytestring >= 0.10.0.0
|
|
, deepseq
|
|
, exceptions
|
|
, hpath-filepath >= 0.10 && < 0.11
|
|
, template-haskell
|
|
, utf8-string
|
|
, word8
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/hasufell/hpath
|
|
|