1{
2 lib,
3 bundlerApp,
4 bundlerUpdateScript,
5}:
6
7bundlerApp {
8 pname = "bashly";
9
10 gemdir = ./.;
11 exes = [ "bashly" ];
12
13 passthru.updateScript = bundlerUpdateScript "bashly";
14
15 meta = {
16 description = "Bash command line framework and CLI generator";
17 homepage = "https://github.com/DannyBen/bashly";
18 license = lib.licenses.mit;
19 mainProgram = "bashly";
20 maintainers = with lib.maintainers; [ drupol ];
21 platforms = lib.platforms.unix;
22 };
23}