Some checks are pending
/ check (push) Waiting to run
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
19 lines
204 B
Nix
Executable file
19 lines
204 B
Nix
Executable file
{ pkgs }:
|
|
|
|
pkgs.writeShellApplication {
|
|
name = "create-script";
|
|
|
|
text = ''
|
|
cat > "$1" << EOF
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
EOF
|
|
|
|
chmod +x "$1"
|
|
|
|
$EDITOR "$1";
|
|
'';
|
|
}
|