skeleton/skeleton.cabal

33 lines
1.1 KiB
Plaintext
Raw Normal View History

2015-07-07 22:41:47 +02:00
name: skeleton
2015-07-07 15:40:52 +02:00
version: 0.1.0.0
synopsis: a tool to access the OSX keychain
description:
2015-07-07 22:41:47 +02:00
skeleton is a command line tool used to quickly access passwords
stored in the OSX keychain. You can search by account, server
name or any other available attribute and get a list of fuzzy
matched result. The first match is be copied to the clipbdoard.
2015-07-07 15:40:52 +02:00
license: MIT
license-file: LICENSE
author: rnhmjoj
maintainer: micheleguerinirocco@me.com
copyright: (C) Michele Guerini Rocco
category: Utility
build-type: Simple
extra-source-files: README.md, LICENSE
cabal-version: >=1.10
2015-07-07 22:46:24 +02:00
executable skeleton
2015-07-07 15:40:52 +02:00
main-is: Main.hs
hs-source-dirs: src
default-language: Haskell2010
other-modules:
other-extensions: OverloadedStrings, RecordWildCards,
ViewPatterns, FlexibleInstances,
TypeSynonymInstances
build-depends: base >=4.8 && <= 5.0, filepath, process,
2015-07-07 21:00:41 +02:00
attoparsec, bytestring, hex, time,
argparser
2015-07-07 23:16:29 +02:00
ghc-options: -O2