git-semversion 0.5.2

Generate a semantic versioning compliant tag for your HEAD commit.
{
  inputs = {
    flake-utils.url = "github:numtide/flake-utils";
  };

  outputs = { self, nixpkgs, flake-utils }:
    flake-utils.lib.eachDefaultSystem (system: let
      pkgs = nixpkgs.legacyPackages.${system};
    in {
      devShell = pkgs.mkShell {
        buildInputs = [
          pkgs.cargo-watch
          pkgs.just
          pkgs.lldb
          pkgs.rustup
          pkgs.starship
        ];
        shellHook = ''
          source .local.env
          rustup default stable
          eval "$(starship init bash)"
        '';
      };
    });
}