``` (runCommand "rah-utils" { preferLocalBuild = true; allowSubstitutes = false; } '' for tool in ${./bin}"/"*; do install -D -m755 $tool $out/bin/$(basename $tool) done substituteInPlace $out/bin/rofi-emoji \ --subst-var-by path ${with pkgs; lib.makeBinPath [ rofi xclip xdotool ]} \ --subst-var-by emojifile ${./bin/emoji.txt} patchShebangs $out/bin '') ```