scripts/pkgs/run.nix

27 lines
295 B
Nix

{
writeShellApplication,
bash,
zenity,
rmlint,
git,
gum,
xclip,
ghostty,
...
}:
writeShellApplication {
name = "run";
runtimeInputs = [
bash
zenity
rmlint
git
gum
xclip
ghostty
];
text = builtins.readFile ../src/packaged_scripts/run.sh;
}