alea/alea.cabal

35 lines
1.1 KiB
Plaintext
Raw Normal View History

2014-10-14 00:45:38 +02:00
name: alea
2017-02-20 05:10:05 +01:00
version: 0.5.2.0
2014-10-14 00:45:38 +02:00
synopsis: a diceware passphrase generator
description:
Alea is a utility that helps you generate diceware passphrases.
You can choose to roll the dice on your own or let the program
generates the words for you.
homepage: https://github.com/Rnhmjoj/alea
license: MIT
2014-10-14 00:45:38 +02:00
license-file: LICENSE
author: rnhmjoj
2014-10-14 00:45:38 +02:00
maintainer: micheleguerinirocco@me.com
2015-04-11 20:02:27 +02:00
copyright: (C) Michele Guerini Rocco 2015
2014-10-14 00:45:38 +02:00
category: Utility
build-type: Simple
extra-source-files: README.md, LICENSE
2014-10-14 18:09:38 +02:00
data-files: dict/diceware
2014-10-14 00:45:38 +02:00
cabal-version: >=1.10
2015-01-19 18:03:48 +01:00
source-repository head
type: git
location: https://github.com/rnhmjoj/alea
2014-10-14 00:45:38 +02:00
executable alea
main-is: Main.hs
2015-01-19 21:16:00 +01:00
hs-source-dirs: src
2014-10-14 00:45:38 +02:00
default-language: Haskell2010
2016-04-28 18:08:10 +02:00
other-modules: Alea.Diceware
2014-10-14 00:45:38 +02:00
other-extensions: DeriveDataTypeable, RecordWildCards
2016-05-05 16:24:03 +02:00
build-depends: base >=4.8 && < 5.0, random, text,
optparse-applicative
2014-10-16 23:23:17 +02:00
ghc-options: -O2