hsilop/hsilop.cabal

31 lines
902 B
Plaintext
Raw Permalink Normal View History

2015-03-14 21:18:52 +01:00
name: hsilop
2015-09-19 05:56:18 +02:00
version: 0.2.0.0
2015-03-14 21:18:52 +01:00
synopsis: RPN calculator
description:
ʜƨiloꟼ is a simple reverse polish notation calculator
with haskeline line editing capabilites.
homepage: https://github.com/Rnhmjoj/hsilop
license: MIT
license-file: LICENSE
author: rnhmjoj
2015-03-14 21:18:52 +01:00
maintainer: micheleguerinirocco@me.com
copyright:
category: Math
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/rnhmjoj/hsilop
executable hsilop
main-is: Main.hs
hs-source-dirs: src
default-language: Haskell2010
2015-09-19 05:57:16 +02:00
other-extensions: ViewPatterns, LambdaCase
2015-09-19 05:56:08 +02:00
build-depends: base ==4.*, haskeline,
directory, filepath, xdg-basedir
2015-03-14 21:18:52 +01:00
ghc-options: -O2