a cabal implementation in erlang
% SPDX-FileCopyrightText: 2023 Henry Bubert
%
% SPDX-License-Identifier: LGPL-2.1-or-later
{application, cabal, [
    {description, "cabal"},
    {vsn, {cmd, "echo 0.1-`git describe --always --tags`"}},
    {registered, []},
    {applications, [
        kernel,
        % sasl,
        stdlib,
        crypto,
        observer,
        % wx,
        % ranch,
        enacl,
        % jiffy,
        % bitcask,
        compiler,
        debugger,
        syntax_tools,
        tools
    ]},
    {env, []}

    % {mod, {cabal_app, [{cabal_log_level, notice}]}}
]}.