27 lines
333 B
Nix
27 lines
333 B
Nix
{
|
|
writeShellApplication,
|
|
bash,
|
|
zenity,
|
|
git,
|
|
gum,
|
|
xclip,
|
|
ghostty,
|
|
callPackage,
|
|
...
|
|
}:
|
|
writeShellApplication {
|
|
name = "run";
|
|
|
|
runtimeInputs = [
|
|
bash
|
|
zenity
|
|
git
|
|
gum
|
|
xclip
|
|
ghostty
|
|
(callPackage ../pkgs_pr/rmlint.nix { })
|
|
];
|
|
|
|
text = builtins.readFile ../src/packaged_scripts/run.sh;
|
|
}
|