more fixes
This commit is contained in:
parent
5a1554a115
commit
00078c2aa3
1 changed files with 4 additions and 4 deletions
|
|
@ -11,9 +11,9 @@ let
|
|||
};
|
||||
nativeBuildInputs = [ pkgs.makeWrapper ];
|
||||
postInstall = ''
|
||||
chmod +x $target/share/tmux-plugins/tmux-current-pane-hostname/*.tmux
|
||||
find $target -type f -name "*.tmux" -exec chmod +x {} \;
|
||||
patchShebangs $target
|
||||
for script in $target/share/tmux-plugins/tmux-current-pane-hostname/*.tmux; do
|
||||
find $target -type f -name "*.tmux" | while IFS= read -r script; do
|
||||
wrapProgram "$script" --prefix PATH : ${
|
||||
pkgs.lib.makeBinPath [
|
||||
pkgs.bash
|
||||
|
|
@ -34,9 +34,9 @@ let
|
|||
};
|
||||
nativeBuildInputs = [ pkgs.makeWrapper ];
|
||||
postInstall = ''
|
||||
chmod +x $target/share/tmux-plugins/tmux-compile/*.tmux
|
||||
find $target -type f -name "*.tmux" -exec chmod +x {} \;
|
||||
patchShebangs $target
|
||||
for script in $target/share/tmux-plugins/tmux-compile/*.tmux; do
|
||||
find $target -type f -name "*.tmux" | while IFS= read -r script; do
|
||||
wrapProgram "$script" --prefix PATH : ${
|
||||
pkgs.lib.makeBinPath [
|
||||
pkgs.bash
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue