Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
filepath.cabal 2.17 KiB
cabal-version:  >= 1.18
name:           filepath
version:        1.4.2.1
-- NOTE: Don't forget to update ./changelog.md
license:        BSD3
license-file:   LICENSE
author:         Neil Mitchell <ndmitchell@gmail.com>
maintainer:     Neil Mitchell <ndmitchell@gmail.com>
copyright:      Neil Mitchell 2005-2018
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==8.4.3, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.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
extra-doc-files:
    README.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 && < 4.13

    ghc-options: -Wall

test-suite filepath-tests
    type: exitcode-stdio-1.0
    default-language: Haskell2010
    main-is: Test.hs
    ghc-options: -main-is Test
    hs-source-dirs: tests
    other-modules:
        TestGen
        TestUtil
    build-depends:
        filepath,
        base,
        QuickCheck >= 2.7 && < 2.13