Advertisement
Guest User

simple.cabal

a guest
Oct 23rd, 2021
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. cabal-version: 1.12
  2.  
  3. -- This file has been generated from package.yaml by hpack version 0.34.4.
  4. --
  5. -- see: https://github.com/sol/hpack
  6.  
  7. name: simple
  8. version: 0.1.0.0
  9. description: Please see the README on GitHub at <https://github.com/githubuser/simple#readme>
  10. homepage: https://github.com/githubuser/simple#readme
  11. bug-reports: https://github.com/githubuser/simple/issues
  12. author: Author name here
  13. maintainer: example@example.com
  14. copyright: 2021 Author name here
  15. license: BSD3
  16. license-file: LICENSE
  17. build-type: Simple
  18. extra-source-files:
  19. README.md
  20. ChangeLog.md
  21.  
  22. -- source-repository head
  23. -- type: git
  24. -- location: https://github.com/githubuser/simple
  25.  
  26. -- nix: True
  27.  
  28. library
  29. exposed-modules:
  30. BoundInterpreter
  31. BoundTypeInference
  32. HasProj
  33. Language.Abs
  34. Language.AbsToBoundAbs
  35. Language.BoundAbs
  36. Language.ErrM
  37. Language.Layout
  38. Language.Lex
  39. Language.Par
  40. Language.Print
  41. Language.Shape
  42. Language.Skel
  43. Lib
  44. Paternalize
  45. SimpleInterpreter
  46. SimpleLangMonad
  47. TermUtils
  48. other-modules:
  49. Paths_simple
  50. hs-source-dirs:
  51. src
  52. build-tool-depends:
  53. alex:alex
  54. , happy:happy
  55. build-depends:
  56. array
  57. , base >=4.7 && <5
  58. , bound
  59. , containers
  60. , deriving-compat
  61. , haskeline
  62. , logict
  63. , mtl
  64. , text
  65. , unification-fd
  66. default-language: Haskell2010
  67.  
  68. executable simple-exe
  69. main-is: Main.hs
  70. other-modules:
  71. Paths_simple
  72. hs-source-dirs:
  73. app
  74. ghc-options: -threaded -rtsopts -with-rtsopts=-N
  75. build-tool-depends:
  76. alex:alex
  77. , happy:happy
  78. build-depends:
  79. array
  80. , base >=4.7 && <5
  81. , bound
  82. , containers
  83. , deriving-compat
  84. , haskeline
  85. , logict
  86. , mtl
  87. , simple
  88. , text
  89. , unification-fd
  90. default-language: Haskell2010
  91.  
  92. test-suite simple-test
  93. type: exitcode-stdio-1.0
  94. main-is: Spec.hs
  95. other-modules:
  96. Paths_simple
  97. hs-source-dirs:
  98. test
  99. ghc-options: -threaded -rtsopts -with-rtsopts=-N
  100. build-tool-depends:
  101. alex:alex
  102. , happy:happy
  103. build-depends:
  104. array
  105. , base >=4.7 && <5
  106. , bound
  107. , containers
  108. , deriving-compat
  109. , haskeline
  110. , logict
  111. , mtl
  112. , simple
  113. , text
  114. , unification-fd
  115. default-language: Haskell2010
  116.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement