hsfm/hsfm.cabal

118 lines
3.9 KiB
Plaintext
Raw Permalink Normal View History

2015-12-17 03:42:22 +00:00
name: hsfm
version: 0.0.0.1
synopsis: Haskell FileManager
description: FileManager written in haskell
2015-12-17 03:42:22 +00:00
license: GPL-2
license-file: LICENSE
author: Julian Ospald
maintainer: hasufell@hasufell.de
2016-03-30 22:28:23 +00:00
copyright: Copyright: (c) 2016 Julian Ospald
homepage: https://github.com/hasufell/hsfm
2015-12-17 03:42:22 +00:00
category: Desktop
build-type: Simple
2016-06-02 11:45:57 +00:00
cabal-version: >=1.22
2015-12-17 03:42:22 +00:00
2016-03-30 18:16:34 +00:00
data-files:
LICENSE
data/Gtk/builder.xml
2015-12-19 23:49:14 +00:00
data/Gtk/icons/error.png
data/Gtk/icons/gtk-directory.png
data/Gtk/icons/gtk-file.png
2015-12-24 16:44:28 +00:00
data/Gtk/icons/hsfm.png
hsfm.cabal
2015-12-19 23:49:14 +00:00
2015-12-17 03:42:22 +00:00
library
2016-03-30 18:16:34 +00:00
exposed-modules:
HSFM.FileSystem.FileType
HSFM.FileSystem.UtilTypes
2016-06-04 15:28:04 +00:00
HSFM.History
2016-06-07 18:07:16 +00:00
HSFM.Settings
2016-03-30 18:16:34 +00:00
HSFM.Utils.IO
HSFM.Utils.MyPrelude
2015-12-17 03:42:22 +00:00
2016-03-30 18:16:34 +00:00
build-depends:
IfElse,
2016-05-30 12:50:14 +00:00
base >= 4.8 && < 5,
bytestring,
2015-12-17 03:42:22 +00:00
filepath >= 1.3.0.0,
2016-05-01 02:37:34 +00:00
hinotify-bytestring,
hpath >= 0.11.0 ,
hpath-filepath >= 0.10.3,
hpath-io >= 0.12.0,
safe,
2015-12-17 03:42:22 +00:00
stm,
time >= 1.4.2,
2016-05-29 11:26:21 +00:00
unix,
utf8-string
2015-12-17 03:42:22 +00:00
hs-source-dirs: src
default-language: Haskell2010
Default-Extensions: RecordWildCards
PatternSynonyms
FlexibleInstances
ViewPatterns
2015-12-17 03:42:22 +00:00
ghc-options:
2016-03-31 14:19:31 +00:00
-Wall
2015-12-17 03:42:22 +00:00
executable hsfm-gtk
2016-03-30 18:16:34 +00:00
main-is: HSFM/GUI/Gtk.hs
other-modules:
2017-12-13 22:33:34 +00:00
Paths_hsfm
HSFM.FileSystem.FileType
HSFM.FileSystem.UtilTypes
HSFM.GUI.Glib.GlibString
2016-03-30 18:16:34 +00:00
HSFM.GUI.Gtk.Callbacks
HSFM.GUI.Gtk.Callbacks.Utils
2016-03-30 18:16:34 +00:00
HSFM.GUI.Gtk.Data
HSFM.GUI.Gtk.Dialogs
2016-03-31 14:19:31 +00:00
HSFM.GUI.Gtk.Errors
2016-03-30 18:16:34 +00:00
HSFM.GUI.Gtk.Icons
HSFM.GUI.Gtk.MyGUI
HSFM.GUI.Gtk.MyView
2016-06-08 16:23:20 +00:00
HSFM.GUI.Gtk.Plugins
2016-06-07 18:07:16 +00:00
HSFM.GUI.Gtk.Settings
2016-03-30 18:16:34 +00:00
HSFM.GUI.Gtk.Utils
2017-12-13 22:33:34 +00:00
HSFM.History
HSFM.Settings
HSFM.Utils.IO
2016-03-30 18:16:34 +00:00
HSFM.Utils.MyPrelude
2015-12-22 13:16:17 +00:00
2016-03-30 18:16:34 +00:00
build-depends:
2016-06-02 11:45:57 +00:00
Cabal >= 1.22.0.0,
IfElse,
2016-05-30 12:50:14 +00:00
base >= 4.8 && < 5,
bytestring,
2015-12-17 03:42:22 +00:00
filepath >= 1.3.0.0,
2016-03-30 18:16:34 +00:00
glib >= 0.13,
gtk3 >= 0.14.1,
hinotify-bytestring,
hpath >= 0.11.0 ,
hpath-filepath >= 0.10.3,
hpath-io >= 0.12.0,
2016-03-30 18:16:34 +00:00
hsfm,
monad-loops,
2015-12-17 03:42:22 +00:00
old-locale >= 1,
process,
safe,
simple-sendfile,
2015-12-17 03:42:22 +00:00
stm,
time >= 1.4.2,
transformers,
unix,
unix-bytestring,
utf8-string,
word8
2015-12-17 03:42:22 +00:00
hs-source-dirs: src
default-language: Haskell2010
Default-Extensions: RecordWildCards
PatternSynonyms
FlexibleInstances
ViewPatterns
2015-12-17 03:42:22 +00:00
ghc-options:
2016-03-31 14:19:31 +00:00
-Wall
2016-05-02 17:08:46 +00:00
2016-05-30 12:50:58 +00:00
source-repository head
type: git
location: https://github.com/hasufell/hsfm