scripts/pkgs/run.nix

28 lines
310 B
Nix

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