2014-10-14 00:45:38 +02:00
|
|
|
name: alea
|
2015-09-10 03:39:34 +02:00
|
|
|
version: 0.4.1.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
|
2014-10-14 19:46:36 +02:00
|
|
|
license: MIT
|
2014-10-14 00:45:38 +02:00
|
|
|
license-file: LICENSE
|
2015-09-10 03:39:34 +02:00
|
|
|
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
|
2015-04-11 20:02:27 +02:00
|
|
|
other-modules: Alea.Diceware, Alea.List, Alea.Random
|
2014-10-14 00:45:38 +02:00
|
|
|
other-extensions: DeriveDataTypeable, RecordWildCards
|
2015-04-11 20:02:27 +02:00
|
|
|
build-depends: base >=4.8 && < 5.0, containers,
|
|
|
|
argparser, threefish
|
2014-10-16 23:23:17 +02:00
|
|
|
ghc-options: -O2
|