hsfm/hsfm.cabal

87 lines
2.7 KiB
Plaintext
Raw 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
copyright: Copyright: (c) 2015 Julian Ospald
category: Desktop
build-type: Simple
cabal-version: >=1.10
2015-12-19 23:49:14 +00:00
data-files: data/Gtk/builder.xml
data/Gtk/icons/error.png
data/Gtk/icons/gtk-directory.png
data/Gtk/icons/gtk-file.png
2015-12-17 03:42:22 +00:00
library
exposed-modules: Data.DirTree
IO.Utils
IO.File
IO.Error
MyPrelude
2015-12-17 03:42:22 +00:00
build-depends: base >= 4.7,
data-default,
bifunctors >= 5,
containers,
2015-12-17 03:42:22 +00:00
directory >= 1.1.0.0 && < 1.2.3.0,
filepath >= 1.3.0.0,
mtl >= 2.2,
old-locale >= 1,
process,
safe,
2015-12-17 03:42:22 +00:00
stm,
time >= 1.4.2,
unix
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:
-O2
2015-12-22 13:16:17 +00:00
-threaded
"-with-rtsopts=-N"
2015-12-17 03:42:22 +00:00
executable hsfm-gtk
main-is: GUI/Gtk.hs
other-modules: GUI.Gtk.Callbacks
GUI.Gtk.Data
GUI.Gtk.Dialogs
GUI.Gtk.Icons
GUI.Gtk.Utils
MyPrelude
2015-12-22 13:16:17 +00:00
2015-12-17 03:42:22 +00:00
build-depends: hsfm,
base >= 4.7,
containers,
2015-12-17 03:42:22 +00:00
data-default,
gtk3 >= 0.14.1,
glib >= 0.13,
bifunctors >= 5,
directory >= 1.1.0.0 && < 1.2.3.0,
filepath >= 1.3.0.0,
mtl >= 2.2,
old-locale >= 1,
process,
safe,
2015-12-17 03:42:22 +00:00
stm,
time >= 1.4.2,
transformers,
unix
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:
-O2
2015-12-22 13:16:17 +00:00
-threaded
"-with-rtsopts=-N"