fixes tmux
This commit is contained in:
parent
29c9a156e5
commit
2d84acf590
1 changed files with 2 additions and 2 deletions
|
|
@ -11,7 +11,7 @@ let
|
||||||
};
|
};
|
||||||
nativeBuildInputs = [ pkgs.makeWrapper ];
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
find $target -type f -name "*.tmux" -o -name "*.sh" | while read script; do
|
find $target -type f -executable \( -name "*.tmux" -o -name "*.sh" \) | while read script; do
|
||||||
wrapProgram "$script" --prefix PATH : ${
|
wrapProgram "$script" --prefix PATH : ${
|
||||||
pkgs.lib.makeBinPath [
|
pkgs.lib.makeBinPath [
|
||||||
pkgs.bash
|
pkgs.bash
|
||||||
|
|
@ -32,7 +32,7 @@ let
|
||||||
};
|
};
|
||||||
nativeBuildInputs = [ pkgs.makeWrapper ];
|
nativeBuildInputs = [ pkgs.makeWrapper ];
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
find $target -type f -name "*.tmux" -o -name "*.sh" | while read script; do
|
find $target -type f -executable \( -name "*.tmux" -o -name "*.sh" \) | while read script; do
|
||||||
wrapProgram "$script" --prefix PATH : ${
|
wrapProgram "$script" --prefix PATH : ${
|
||||||
pkgs.lib.makeBinPath [
|
pkgs.lib.makeBinPath [
|
||||||
pkgs.bash
|
pkgs.bash
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue