filepath-1.4.2.2: filepath.cabal
cabal-version: 1.18
name: filepath
version: 1.4.2.2
-- NOTE: Don't forget to update ./changelog.md
license: BSD3
license-file: LICENSE
author: Neil Mitchell <ndmitchell@gmail.com>
maintainer: Julian Ospald <hasufell@posteo.de>
copyright: Neil Mitchell 2005-2020
bug-reports: https://github.com/haskell/filepath/issues
homepage: https://github.com/haskell/filepath#readme
category: System
build-type: Simple
synopsis: Library for manipulating FilePaths in a cross platform way.
tested-with: GHC==9.2.1, GHC==9.0.1, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2
description:
This package provides functionality for manipulating @FilePath@ values, and is shipped with both <https://www.haskell.org/ghc/ GHC> and the <https://www.haskell.org/platform/ Haskell Platform>. It provides three modules:
.
* "System.FilePath.Posix" manipulates POSIX\/Linux style @FilePath@ values (with @\/@ as the path separator).
.
* "System.FilePath.Windows" manipulates Windows style @FilePath@ values (with either @\\@ or @\/@ as the path separator, and deals with drives).
.
* "System.FilePath" is an alias for the module appropriate to your platform.
.
All three modules provide the same API, and the same documentation (calling out differences in the different variants).
extra-source-files:
System/FilePath/Internal.hs
Makefile
extra-doc-files:
README.md
HACKING.md
changelog.md
source-repository head
type: git
location: https://github.com/haskell/filepath.git
library
default-language: Haskell2010
other-extensions:
CPP
PatternGuards
if impl(GHC >= 7.2)
other-extensions: Safe
exposed-modules:
System.FilePath
System.FilePath.Posix
System.FilePath.Windows
build-depends:
base >= 4.9 && < 4.17
ghc-options: -Wall
test-suite filepath-tests
type: exitcode-stdio-1.0
default-language: Haskell2010
main-is: Test.hs
hs-source-dirs: tests
other-modules:
TestGen
TestUtil
build-depends:
filepath,
base,
QuickCheck >= 2.7 && < 2.15