Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
196 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: installPhase
  3. # key: ip
  4. # --
  5. installPhase= ''
  6. ${1: mkdir -p \$out/bin
  7. for f in \$(find . -executable -type f);
  8. do
  9. cp \$f \$out/bin/
  10. done}
  11. '';
  12. $0