Use jdb-software package repo instead of URL-links to dependencies.

This commit is contained in:
Jonathan Bernard 2023-02-04 15:20:07 -06:00
parent 3f9eb80713
commit ad8f36dc48
2 changed files with 18 additions and 4 deletions

14
README.md Normal file
View File

@ -0,0 +1,14 @@
# Hope Family Fellowship Notion API Client
## Building
### Software Packages
`hff_notion_api_client` depends on a number of packages which are not yet
available in he official Nim repository. The easiest way to get access to these
packages is to add a new `PackageList` to your [nimble configuration] for the
[JDB Software Nim packages repository]. The url is
`https://git.jdb-software.com/jdb/nim-packages/raw/main/packages.json`
[nimble configuration]: https://github.com/nim-lang/nimble#configuration
[JDB Software Nim packages]: https://git.jdb-software.com/jdb/nim-packages

View File

@ -1,6 +1,6 @@
# Package
version = "0.4.4"
version = "0.4.5"
author = "Jonathan Bernard"
description = "Utilities and bindings for HFF's Notion API."
license = "GPL-3.0-or-later"
@ -9,6 +9,6 @@ srcDir = "src"
# Dependencies
requires "nim >= 1.4.8"
requires "https://git.jdb-software.com/jdb/buffoonery"
requires "https://git.jdb-software.com/jdb/nim-time-utils.git >= 0.5.0"
requires "https://git.jdb-software.com/jdb/nim-namespaced-logging.git >= 0.3.1"
# packages from git.jdb-software.com/jdb/nim-packages
requires @["buffoonery", "timeutils >= 0.5.0", "namespaced_logging >= 0.3.1"]