packages feed

namecoin-update-0.2.3.0: namecoin-update.cabal

name:                namecoin-update
version:             0.2.3.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:          rnhmjoj@inventati.org
copyright:           (C) Michele Guerini Rocco 2022
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 <= 5.0, lens, wreq,
                       aeson, text, attoparsec
  default-extensions:  OverloadedStrings
                       RecordWildCards, DuplicateRecordFields
  default-language:    Haskell2010

executable namecoin-update
  hs-source-dirs:      src
  main-is:             Main.hs
  build-depends:       base <= 5.0, text, namecoin-update
  default-language:    Haskell2010