mirror of
https://codeberg.org/melvi/plusPlusFetch.git
synced 2026-03-31 12:31:26 +02:00
fetch made with C++
- C++ 84%
- CMake 7.3%
- Nix 5.4%
- C 3.3%
| ascii | ||
| assets | ||
| src | ||
| .gitignore | ||
| CMakeLists.txt | ||
| default.nix | ||
| flake.lock | ||
| flake.nix | ||
| README.md | ||
Build
to build:
mkdir build
cmake -S . -B build/
cd build/
cmake --build .
cmake --install .
to run:
./plusplusfetch
NixOS
to build with nix:
nix build
to run with nix:
nix run
to install with nixos:
- Add to inputs:
plusPlusFetch.url = "git+https://codeberg.org/melvi/plusPlusFetch";
- Add to packages (system-wide or home-manager):
environment.systemPackages = [
inputs.plusPlusFetch.packages.${pkgs.system}.default
];
or
home.packages = [
inputs.plusPlusFetch.packages.${pkgs.system}.default
];
- Run rebuild and then you can run fetch with plusplusfetch command
