codeberg-cli 0.5.5

CLI Tool for codeberg similar to gh and glab
Documentation
{ inputs, ... }:
{
  perSystem =
    { system, ... }:
    let
      fnx = inputs.fenix.packages.${system};
    in
    {
      packages = {
        buildToolchain = fnx.combine [
          fnx.stable.cargo
          fnx.stable.rustc
        ];

        devToolchain = fnx.combine [
          fnx.stable.cargo
          fnx.stable.clippy
          fnx.stable.rust-analyzer
          fnx.stable.rust-src
          fnx.stable.rustc

          fnx.complete.rustfmt
        ];
      };

    };
}