codeberg-cli 0.3.0

CLI Tool for codeberg similar to gh and glab
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# shell.nix

{ pkgs ? import <nixos> { } }:
with pkgs; mkShell {
  nativeBuildInputs =
    [
      pkgconfig
    ];
  buildInputs =
    [
      openssl
    ];
  shellHook = ''export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${pkgs.lib.makeLibraryPath [
    openssl
  ]}"'';
}