util.nix (114B)
1 { pkgs }: 2 { 3 writeBash = fname: body: pkgs.writeScript fname '' 4 #! ${pkgs.bash}/bin/bash 5 ${body} 6 ''; 7 }