packages feed

hpg-0.2: hpg.cabal

-- Initial hpg.cabal generated by cabal init.  For further documentation, 
-- see http://haskell.org/cabal/users-guide/

name:                hpg
version:             0.2
synopsis:            no
description:         hpg is a free ISC licensed password generator.
                     It can create passwords based on the following
                     characters:
                     * upper case letters
                     * lower case letters
                     * special characters
                     * numbers
                     The password length is limited to 2^16 due to
                     performance issues.
homepage:            https://git.alokat.org/hpg
license:             ISC
license-file:        LICENSE
author:              Fritjof Bornebusch
maintainer:          fritjof@alokat.org
-- copyright:           
category:            System
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10
source-repository head
  type:     git
  location: https://git.alokat.org/hpg/

executable hpg
  main-is:             Main.hs
  ghc-options:         -Wall 
                       -fwarn-tabs 
                       -fwarn-incomplete-record-updates
                       -fwarn-monomorphism-restriction 
                       -fwarn-unused-do-bind  
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.8 && <4.9,
                       random
  -- pledge(2)
  if os(openbsd)
    build-depends: unix 

  hs-source-dirs:      src
  default-language:    Haskell2010