rosa/rosa.cabal

35 lines
1.1 KiB
Plaintext
Raw Normal View History

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
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
author: rnhmjoj
2019-11-10 11:44:47 +01:00
maintainer: rnhmjoj@inventati.org
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
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,
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