diff --git a/README.md b/README.md new file mode 100644 index 0000000..e1fdb05 --- /dev/null +++ b/README.md @@ -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 diff --git a/hff_notion_api_client.nimble b/hff_notion_api_client.nimble index 57bb473..55d1b4e 100644 --- a/hff_notion_api_client.nimble +++ b/hff_notion_api_client.nimble @@ -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"]