Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

57 linhas
2.0 KiB

  1. cabal-version: >=1.10
  2. name: hpath-posix
  3. version: 0.13.0
  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. , IfElse
  34. , bytestring >= 0.10
  35. , exceptions >= 0.10
  36. , hpath-filepath >= 0.10.3
  37. , safe-exceptions >= 0.1
  38. , streamly >= 0.7
  39. , streamly-bytestring >= 0.1.0.1
  40. , time >= 1.8
  41. , unix >= 2.5
  42. , unix-bytestring >= 0.3
  43. , utf8-string
  44. if impl(ghc < 8.0)
  45. build-depends:
  46. fail >= 4.9
  47. hs-source-dirs: src
  48. default-language: Haskell2010
  49. default-extensions: PackageImports
  50. source-repository head
  51. type: git
  52. location: https://github.com/hasufell/hpath