mirror of
https://github.com/status-im/nim-sqlcipher.git
synced 2025-03-03 10:20:38 +00:00
18 lines
480 B
Plaintext
18 lines
480 B
Plaintext
|
# Package
|
||
|
|
||
|
packageName = "sqlcipher_abi"
|
||
|
version = "0.1.0"
|
||
|
author = "Status Research & Development GmbH"
|
||
|
description = "A wrapper for SQLCipher"
|
||
|
license = "MIT"
|
||
|
|
||
|
# Dependencies
|
||
|
requires "nim >= 1.0.0"
|
||
|
requires "nimterop >= 0.5.2"
|
||
|
|
||
|
before install:
|
||
|
exec "nim e build_dependencies.nims"
|
||
|
exec "./gen-wrapper.sh"
|
||
|
|
||
|
# TODO: read nimterop documentation for remove the need for build_depenencies.nim
|
||
|
# TODO: see https://github.com/nimterop/nimterop/wiki/Wrappers
|