fastfetch-sys 2.43.0

A neofetch like system information tool
Documentation
{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
  };

  outputs = inputs@{ flake-parts, ... }:
    flake-parts.lib.mkFlake { inherit inputs; } {
      systems = [
        "x86_64-linux"
        "x86_64-darwin"
        "aarch64-linux"
        "aarch64-darwin"
      ];

      perSystem = { pkgs, ... }: {
        devShells.default = with pkgs; mkShell {
          nativeBuildInputs = [ cmake ];
          buildInputs = [ libiconv ];
        };
      };
    };
}