Skip to content

Commit

Permalink
fix(tmux): restore tmux from 3.4 to 3.3a
Browse files Browse the repository at this point in the history
  • Loading branch information
EdenEast committed Jun 30, 2024
1 parent 58115e4 commit 767e080
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions nix/overlays/tmux/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{ ... }:

_final: prev:

{
tmux = prev.tmux.overrideAttrs (
old: rec {
version = "3.3a";
src = prev.fetchFromGitHub {
owner = "tmux";
repo = "tmux";
rev = "${version}";
sha256 = "sha256-SygHxTe7N4y7SdzKixPFQvqRRL57Fm8zWYHfTpW+yVY=";
};
patches = [ ];
}
);
}

0 comments on commit 767e080

Please sign in to comment.