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.
 
 
 

118 lines
3.9 KiB

  1. name: hsfm
  2. version: 0.0.0.1
  3. synopsis: Haskell FileManager
  4. description: FileManager written in haskell
  5. license: GPL-2
  6. license-file: LICENSE
  7. author: Julian Ospald
  8. maintainer: hasufell@hasufell.de
  9. copyright: Copyright: (c) 2016 Julian Ospald
  10. homepage: https://github.com/hasufell/hsfm
  11. category: Desktop
  12. build-type: Simple
  13. cabal-version: >=1.22
  14. data-files:
  15. LICENSE
  16. data/Gtk/builder.xml
  17. data/Gtk/icons/error.png
  18. data/Gtk/icons/gtk-directory.png
  19. data/Gtk/icons/gtk-file.png
  20. data/Gtk/icons/hsfm.png
  21. hsfm.cabal
  22. library
  23. exposed-modules:
  24. HSFM.FileSystem.FileType
  25. HSFM.FileSystem.UtilTypes
  26. HSFM.History
  27. HSFM.Settings
  28. HSFM.Utils.IO
  29. HSFM.Utils.MyPrelude
  30. build-depends:
  31. IfElse,
  32. base >= 4.8 && < 5,
  33. bytestring,
  34. filepath >= 1.3.0.0,
  35. hinotify-bytestring,
  36. hpath >= 0.11.0 ,
  37. hpath-filepath >= 0.10.3,
  38. hpath-io >= 0.12.0,
  39. safe,
  40. stm,
  41. time >= 1.4.2,
  42. unix,
  43. utf8-string
  44. hs-source-dirs: src
  45. default-language: Haskell2010
  46. Default-Extensions: RecordWildCards
  47. PatternSynonyms
  48. FlexibleInstances
  49. ViewPatterns
  50. ghc-options:
  51. -Wall
  52. executable hsfm-gtk
  53. main-is: HSFM/GUI/Gtk.hs
  54. other-modules:
  55. Paths_hsfm
  56. HSFM.FileSystem.FileType
  57. HSFM.FileSystem.UtilTypes
  58. HSFM.GUI.Glib.GlibString
  59. HSFM.GUI.Gtk.Callbacks
  60. HSFM.GUI.Gtk.Callbacks.Utils
  61. HSFM.GUI.Gtk.Data
  62. HSFM.GUI.Gtk.Dialogs
  63. HSFM.GUI.Gtk.Errors
  64. HSFM.GUI.Gtk.Icons
  65. HSFM.GUI.Gtk.MyGUI
  66. HSFM.GUI.Gtk.MyView
  67. HSFM.GUI.Gtk.Plugins
  68. HSFM.GUI.Gtk.Settings
  69. HSFM.GUI.Gtk.Utils
  70. HSFM.History
  71. HSFM.Settings
  72. HSFM.Utils.IO
  73. HSFM.Utils.MyPrelude
  74. build-depends:
  75. Cabal >= 1.22.0.0,
  76. IfElse,
  77. base >= 4.8 && < 5,
  78. bytestring,
  79. filepath >= 1.3.0.0,
  80. glib >= 0.13,
  81. gtk3 >= 0.14.1,
  82. hinotify-bytestring,
  83. hpath >= 0.11.0 ,
  84. hpath-filepath >= 0.10.3,
  85. hpath-io >= 0.12.0,
  86. hsfm,
  87. monad-loops,
  88. old-locale >= 1,
  89. process,
  90. safe,
  91. simple-sendfile,
  92. stm,
  93. time >= 1.4.2,
  94. transformers,
  95. unix,
  96. unix-bytestring,
  97. utf8-string,
  98. word8
  99. hs-source-dirs: src
  100. default-language: Haskell2010
  101. Default-Extensions: RecordWildCards
  102. PatternSynonyms
  103. FlexibleInstances
  104. ViewPatterns
  105. ghc-options:
  106. -Wall
  107. source-repository head
  108. type: git
  109. location: https://github.com/hasufell/hsfm