Skip to content

v1.1.4

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 21 Oct 10:07
· 26 commits to master since this release
v1.1.4
f942225

Changelog

Other work

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.cocainate
          ];
        })
        # ...
      ];
    };
  };
}

Arch Linux Distributions

yay -S cocainate-bin
paru -S cocainate-bin

macOS

brew install AppleGamer22/tap/cocainate