You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 lines
830 B

  1. name: paths
  2. version: 0.0.0
  3. synopsis: Typed paths
  4. description: Typed paths
  5. license: BSD3
  6. license-file: LICENSE
  7. author: Chris Done
  8. maintainer: chrisdone@gmail.com
  9. copyright: 2015 Chris Done
  10. category: Filesystem
  11. build-type: Simple
  12. cabal-version: >=1.8
  13. library
  14. hs-source-dirs: src/
  15. ghc-options: -Wall -O2
  16. exposed-modules: Path, Path.Internal
  17. build-depends: base >= 4 && <5
  18. , exceptions
  19. , filepath
  20. , template-haskell
  21. test-suite test
  22. type: exitcode-stdio-1.0
  23. main-is: Main.hs
  24. hs-source-dirs: test
  25. build-depends: HUnit
  26. , base
  27. , hspec
  28. , mtl
  29. , paths