Packages

Erlang NIF module provides an interface to the https://github.com/cossacklabs/themis

Current section

Files

Jump to
themis_nif rebar.config
Raw

rebar.config

{pre_hooks, [
{"(linux|darwin|solaris)", compile, "make -C c_src"},
{"(freebsd|openbsd|netbsd)", compile, "gmake -C c_src"}
]}.
{post_hooks, [
{"(linux|darwin|solaris)", clean, "make -C c_src clean"},
{"(freebsd|openbsd|netbsd)", clean, "gmake -C c_src clean"}
]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{homepage_url, "https://codeberg.org/n3tc4t/themis_nif"},
{source_url, "https://codeberg.org/n3tc4t/themis_nif"}
]}.
{dialyzer, [
{warnings, [
unmatched_returns,
error_handling,
underspecs
]}
]}.
{xref_checks, [
undefined_function_calls
]}.
{hex, [
{doc, #{provider => ex_doc}}
]}.
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.