2015-12-17 03:42:22 +00:00
|
|
|
name: hsfm
|
|
|
|
version: 0.0.0.1
|
|
|
|
synopsis: Haskell FileManager
|
2015-12-19 15:13:48 +00:00
|
|
|
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
|
2015-12-24 17:18:50 +00:00
|
|
|
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
|
2015-12-28 23:48:54 +00:00
|
|
|
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
|
2016-05-08 16:48:17 +00:00
|
|
|
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:
|
2016-05-30 12:50:14 +00:00
|
|
|
base >= 4.8 && < 5,
|
2015-12-27 18:26:58 +00:00
|
|
|
bytestring,
|
2015-12-17 03:42:22 +00:00
|
|
|
filepath >= 1.3.0.0,
|
2016-05-01 02:37:34 +00:00
|
|
|
hinotify-bytestring,
|
2016-06-05 15:58:50 +00:00
|
|
|
hpath >= 0.8.0,
|
2018-05-17 09:42:36 +00:00
|
|
|
IfElse,
|
2015-12-19 15:13:48 +00:00
|
|
|
safe,
|
2015-12-17 03:42:22 +00:00
|
|
|
stm,
|
2015-12-18 03:22:13 +00:00
|
|
|
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
|
2015-12-22 18:40:29 +00:00
|
|
|
PatternSynonyms
|
2015-12-24 02:11:17 +00:00
|
|
|
FlexibleInstances
|
2015-12-22 18:40:29 +00:00
|
|
|
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
|
2016-04-04 22:56:36 +00:00
|
|
|
HSFM.GUI.Glib.GlibString
|
2016-03-30 18:16:34 +00:00
|
|
|
HSFM.GUI.Gtk.Callbacks
|
2016-05-08 18:14:30 +00:00
|
|
|
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,
|
2016-05-30 12:50:14 +00:00
|
|
|
base >= 4.8 && < 5,
|
2015-12-27 18:26:58 +00:00
|
|
|
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,
|
2016-05-02 17:14:41 +00:00
|
|
|
hinotify-bytestring,
|
2016-06-05 15:58:50 +00:00
|
|
|
hpath >= 0.8.0,
|
2016-03-30 18:16:34 +00:00
|
|
|
hsfm,
|
2018-05-17 09:42:36 +00:00
|
|
|
IfElse,
|
2016-06-04 16:58:33 +00:00
|
|
|
monad-loops,
|
2015-12-17 03:42:22 +00:00
|
|
|
old-locale >= 1,
|
|
|
|
process,
|
2015-12-19 15:13:48 +00:00
|
|
|
safe,
|
2016-04-10 01:58:20 +00:00
|
|
|
simple-sendfile,
|
2015-12-17 03:42:22 +00:00
|
|
|
stm,
|
|
|
|
time >= 1.4.2,
|
2015-12-19 15:13:48 +00:00
|
|
|
transformers,
|
2016-04-03 16:19:02 +00:00
|
|
|
unix,
|
2016-04-04 22:56:36 +00:00
|
|
|
unix-bytestring,
|
2016-04-16 17:14:08 +00:00
|
|
|
utf8-string,
|
2016-04-04 22:56:36 +00:00
|
|
|
word8
|
2015-12-17 03:42:22 +00:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
|
|
|
Default-Extensions: RecordWildCards
|
2015-12-22 18:40:29 +00:00
|
|
|
PatternSynonyms
|
2015-12-24 02:11:17 +00:00
|
|
|
FlexibleInstances
|
2015-12-22 18:40:29 +00:00
|
|
|
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
|
|
|
|
|