2014-11-22 18:30:27 +01:00
|
|
|
name: rosa
|
2017-02-20 16:24:02 +01:00
|
|
|
version: 0.3.1.0
|
2014-11-22 18:52:38 +01:00
|
|
|
synopsis: Query the namecoin blockchain
|
2014-11-22 17:15:49 +01:00
|
|
|
description:
|
|
|
|
|
2014-11-22 18:30:27 +01:00
|
|
|
Rosa is a commmand line tool to query the namecoin blockhain.
|
2014-11-22 17:15:49 +01:00
|
|
|
It gets the JSON value of a name and other infos using namecoind
|
|
|
|
local server or the dnschain REST api and display them in a pretty
|
|
|
|
format.
|
|
|
|
|
2017-05-17 20:48:58 +02:00
|
|
|
license: GPL-3
|
2014-11-22 17:15:49 +01:00
|
|
|
license-file: LICENSE
|
2015-09-10 04:07:00 +02:00
|
|
|
author: rnhmjoj
|
2014-11-22 17:15:49 +01:00
|
|
|
maintainer: micheleguerinirocco@me.com
|
2015-04-11 20:29:16 +02:00
|
|
|
copyright: (C) Michele Guerini Rocco 2015
|
2014-11-22 17:15:49 +01:00
|
|
|
category: Utility
|
|
|
|
build-type: Simple
|
|
|
|
extra-source-files: README.md, LICENSE
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
2015-01-19 20:48:15 +01:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/rnhmjoj/rosa
|
|
|
|
|
2014-11-22 18:30:27 +01:00
|
|
|
executable rosa
|
2014-11-22 17:15:49 +01:00
|
|
|
main-is: Main.hs
|
2015-01-19 20:18:58 +01:00
|
|
|
other-modules: Json
|
|
|
|
hs-source-dirs: src
|
2014-11-22 17:15:49 +01:00
|
|
|
default-language: Haskell2010
|
|
|
|
other-extensions: RecordWildCards, OverloadedStrings
|
2017-02-20 16:24:02 +01:00
|
|
|
build-depends: base >=4.8 && <5.0, aeson, text,
|
2015-04-11 20:29:16 +02:00
|
|
|
vector, unordered-containers,
|
|
|
|
wreq, lens >=4.4, bytestring,
|
2016-05-05 18:06:38 +02:00
|
|
|
optparse-applicative, process
|
|
|
|
ghc-options: -O2
|