packages feed

password-cli-0.1.1.0: password-cli.cabal

cabal-version:  3.0

name:           password-cli
version:        0.1.1.0
category:       CLI
synopsis:       use password from your CLI
description:    A simple CLI tool to interact with password
homepage:       https://github.com/cdepillabout/password/tree/master/password-cli#readme
bug-reports:    https://github.com/cdepillabout/password/issues
author:         Dennis Gosnell, Felix Paulusma
maintainer:     cdep.illabout@gmail.com, felix.paulusma@gmail.com
copyright:      Copyright (c) Dennis Gosnell, 2019; Felix Paulusma, 2020
license:        BSD-3-Clause
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/cdepillabout/password


executable password-cli
  -- type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
    Options
    Paths_password_cli
  autogen-modules:
    Paths_password_cli
  hs-source-dirs: app
  ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
  build-depends:
      base >= 4.15 && < 5
    , bytestring >= 0.9 && < 1
    , password ^>= 3.0.3.0 || ^>= 3.1.0.0
    , password-types ^>= 1.0
    , optparse-applicative >= 0.14.3 && < 0.20
    , text >= 1.2 && < 3
  default-language: Haskell2010