namecoin-update/namecoin-update.cabal

38 lines
1.2 KiB
Plaintext
Raw Normal View History

2015-08-28 17:17:36 +02:00
name: namecoin-update
version: 0.2.3.0
2017-05-14 04:32:42 +02:00
synopsis: Tool to keep namecoin names updated and well
2017-05-15 20:48:30 +02:00
description:
A small program that updates the names in a namecoin wallet
to prevent expiration. It uses the JSON-RPC API provided by
namecoind to scan and update the values of the name when needed.
The tool is intended to be run regularly, for example from cron.
2017-05-14 04:32:42 +02:00
license: GPL-3
2015-08-28 17:17:36 +02:00
license-file: LICENSE
author: rnhmjoj
maintainer: rnhmjoj@inventati.org
copyright: (C) Michele Guerini Rocco 2022
2015-08-28 17:17:36 +02:00
category: Network
build-type: Simple
cabal-version: >=1.10
2017-05-15 20:48:30 +02:00
source-repository head
type: git
location: https://github.com/rnhmjoj/namecoin-update
library
hs-source-dirs: src/lib
exposed-modules: Namecoin
2018-01-01 19:24:54 +01:00
build-depends: base <= 5.0, lens, wreq,
2017-05-15 20:48:30 +02:00
aeson, text, attoparsec
default-extensions: OverloadedStrings
2017-05-15 20:48:30 +02:00
RecordWildCards, DuplicateRecordFields
default-language: Haskell2010
2015-08-28 17:17:36 +02:00
executable namecoin-update
2017-05-15 20:48:30 +02:00
hs-source-dirs: src
2015-08-28 17:17:36 +02:00
main-is: Main.hs
2018-01-01 19:24:54 +01:00
build-depends: base <= 5.0, text, namecoin-update
2017-01-26 23:50:27 +01:00
default-language: Haskell2010