2014-11-22 18:30:27 +01:00
|
|
|
name: rosa
|
2022-06-12 04:00:11 +02:00
|
|
|
version: 0.6.0.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
|
2022-06-12 03:51:20 +02:00
|
|
|
local server and displays them in a pretty format.
|
2014-11-22 17:15:49 +01:00
|
|
|
|
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
|
2019-11-10 11:44:47 +01:00
|
|
|
maintainer: rnhmjoj@inventati.org
|
2022-06-12 03:51:20 +02:00
|
|
|
copyright: (C) Michele Guerini Rocco 2022
|
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-05-17 20:50:03 +02:00
|
|
|
build-depends: base >=4.8 && <5.0 , aeson, text,
|
2022-06-12 03:51:20 +02:00
|
|
|
vector, uri-encode,
|
|
|
|
bytestring, directory,
|
2017-05-17 20:50:03 +02:00
|
|
|
optparse-applicative, namecoin-update
|
2016-05-05 18:06:38 +02:00
|
|
|
ghc-options: -O2
|