35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
name: rosa
|
|
version: 0.6.0.0
|
|
synopsis: Query the namecoin blockchain
|
|
description:
|
|
|
|
Rosa is a commmand line tool to query the namecoin blockhain.
|
|
It gets the JSON value of a name and other infos using namecoind
|
|
local server and displays them in a pretty format.
|
|
|
|
license: GPL-3
|
|
license-file: LICENSE
|
|
author: rnhmjoj
|
|
maintainer: rnhmjoj@inventati.org
|
|
copyright: (C) Michele Guerini Rocco 2022
|
|
category: Utility
|
|
build-type: Simple
|
|
extra-source-files: README.md, LICENSE
|
|
cabal-version: >=1.10
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/rnhmjoj/rosa
|
|
|
|
executable rosa
|
|
main-is: Main.hs
|
|
other-modules: Json
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
other-extensions: RecordWildCards, OverloadedStrings
|
|
build-depends: base >=4.8 && <5.0 , aeson, text,
|
|
vector, uri-encode,
|
|
bytestring, directory,
|
|
optparse-applicative, namecoin-update
|
|
ghc-options: -O2
|