Use the tmux-sessionizer from GitHub

Use the tmux-sessionizer code from GitHub instead of writing it myself
and apply a patch to change the directories it uses to provide
suggestions.
This commit is contained in:
Oliver Davies 2025-01-18 01:56:28 +00:00
parent 75efe1bf99
commit 5fd27efa50
4 changed files with 43 additions and 60 deletions

View file

@ -0,0 +1,27 @@
{ pkgs, ... }:
pkgs.stdenv.mkDerivation rec {
pname = "tmux-sessonizer";
version = "0.1.0";
src = pkgs.fetchFromGitHub {
owner = "theprimeagen";
repo = "tmux-sessionizer";
rev = "master";
sha256 = "bZXt9TyMU1Ed/WR0/ahMQ4oyIi6yXLKnXKYPPNBt/s4=";
};
buildInputs = with pkgs; [
bash
fzf
tmux
];
patches = [ ./configure-directories.patch ];
installPhase = ''
mkdir -p $out/bin
cp tmux-sessionizer $out/bin/tmux-sessionizer
chmod +x $out/bin/tmux-sessionizer
'';
}