Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

tmux: CPU in Catppuccin theme #37

Closed
storopoli opened this issue Jan 15, 2024 · 1 comment
Closed

tmux: CPU in Catppuccin theme #37

storopoli opened this issue Jan 15, 2024 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@storopoli
Copy link
Owner

Use the fork catppuccin/tmux#89 into a patch.

Something like this:

{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
  };

  outputs = { self, nixpkgs }: {
    # Replace `system` with your configuration's system if necessary, e.g. "x86_64-linux".
    packages.x86_64-linux.my-package = nixpkgs.legacyPackages.x86_64-linux.stdenv.mkDerivation rec {
      name = "my-package";

      # Replace `src` and `version` with the appropriate values for the package you are modifying
      src = nixpkgs.legacyPackages.x86_64-linux.my-package.src;
      version = nixpkgs.legacyPackages.x86_64-linux.my-package.version;

      patches = [
        # Path to your custom patch
        ./my-custom.patch
      ];

      # Ensure patch is included during the build process
      prePatch = ''
        patches+=(
           ${self.inputs.someInput.somePackage}/some-patch.patch
        )
      '';
    };
  };
}
@storopoli storopoli added the enhancement New feature or request label Jan 15, 2024
@storopoli storopoli self-assigned this Jan 15, 2024
@storopoli storopoli mentioned this issue Jan 16, 2024
@storopoli
Copy link
Owner Author

closed in favor of zellij #38

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant