Changelog
Other work
- 16566cc: using latest stable go version for release (@AppleGamer22)
- a604d11: using latest stable go version for tagging (@AppleGamer22)
- 09e16e0: using latest stable go version for testinging (@AppleGamer22)
- 2098332: dependabot config formatting (@AppleGamer22)
- c8cef5d: removed deprecated goreleaser fields (@AppleGamer22)
- b71a379: colourful logs (@AppleGamer22)
- 3164ea1: fix error of stoping already stopped process (@AppleGamer22)
- bb42699: killing old process before starting new (@AppleGamer22)
- a09d560: temporarily disabling CI for windows (@AppleGamer22)
- 1d4a440: --- (@dependabot[bot])
- 1021749: nix distribution (@AppleGamer22)
- d366ab7: nix tooling for ci (@AppleGamer22)
Installation
Nix Flakes
{
inputs = {
# or your preferred NixOS channel
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
applegamer22.url = "github:AppleGamer22/nur";
};
outputs = { nixpkgs }: {
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
specialArgs = {
pkgs = import nixpkgs {
# ...
overlays = [
(final: prev: {
# ...
ag22 = applegamer22.packages."<your_system>";
})
];
};
};
modules = [
# or in a separate Nix file
({ pkgs, ... }: {
programs.nix-ld.enable = true;
environment.systemPackages = with pkgs; [
ag22.stalk
];
})
# ...
];
};
};
}Arch Linux Distributions
yay:
yay -S stalk-binparu:
paru -S stalk-binmacOS
brew install AppleGamer22/tap/stalk