7 lines
119 B
Nix
7 lines
119 B
Nix
|
{ pkgs }:
|
||
|
with pkgs;
|
||
|
contents: writeShellScript "launcher.sh" ''
|
||
|
/bin/wait4path /nix/store && \
|
||
|
${contents}
|
||
|
''
|