namecoin-update/namecoin-update.cabal
2017-05-15 20:54:37 +02:00

38 lines
1.3 KiB
Plaintext

name: namecoin-update
version: 0.2.1.0
synopsis: Tool to keep namecoin names updated and well
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.
license: GPL-3
license-file: LICENSE
author: rnhmjoj
maintainer: micheleguerinirocco@me.com
copyright: Copyright (C) Michele Guerini Rocco
category: Network
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/rnhmjoj/namecoin-update
library
hs-source-dirs: src/lib
exposed-modules: Namecoin
build-depends: base >= 4.9 && < 4.10, lens, wreq,
aeson, text, attoparsec
default-extensions: TemplateHaskell, OverloadedStrings
RecordWildCards, DuplicateRecordFields
default-language: Haskell2010
executable namecoin-update
hs-source-dirs: src
main-is: Main.hs
build-depends: base >= 4.9 && < 4.10, text, namecoin-update
default-language: Haskell2010