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.
 
 
 
 

49 lines
1.6 KiB

  1. cabal-version: >=1.10
  2. name: hpath-posix
  3. version: 0.13.2
  4. synopsis: Some low-level POSIX glue code, that is not in 'unix'
  5. homepage: https://github.com/hasufell/hpath
  6. bug-reports: https://github.com/hasufell/hpath/issues
  7. license: BSD3
  8. license-file: LICENSE
  9. author: Julian Ospald <hasufell@posteo.de>
  10. maintainer: Julian Ospald <hasufell@posteo.de>
  11. copyright: Julian Ospald <hasufell@posteo.de> 2020
  12. category: Filesystem
  13. build-type: Simple
  14. extra-source-files: CHANGELOG.md
  15. cbits/dirutils.h
  16. tested-with: GHC==7.10.3
  17. , GHC==8.0.2
  18. , GHC==8.2.2
  19. , GHC==8.4.4
  20. , GHC==8.6.5
  21. , GHC==8.8.1
  22. library
  23. if os(windows)
  24. build-depends: unbuildable<0
  25. buildable: False
  26. exposed-modules: System.Posix.RawFilePath.Directory.Traversals
  27. System.Posix.Foreign
  28. System.Posix.FD
  29. -- other-modules:
  30. -- other-extensions:
  31. c-sources: cbits/dirutils.c
  32. build-depends: base >= 4.8 && <5
  33. , bytestring >= 0.10
  34. , hpath-filepath >= 0.10.3
  35. , unix >= 2.5
  36. if impl(ghc < 8.0)
  37. build-depends:
  38. fail >= 4.9
  39. hs-source-dirs: src
  40. default-language: Haskell2010
  41. default-extensions: PackageImports
  42. source-repository head
  43. type: git
  44. location: https://github.com/hasufell/hpath