lol
1{ lib, ruby_3_0, bundlerApp, fetchpatch }:
2
3bundlerApp {
4 pname = "3llo";
5 ruby = ruby_3_0;
6
7 gemdir = ./.;
8
9 exes = [ "3llo" ];
10
11 meta = with lib; {
12 description = "Trello interactive CLI on terminal";
13 license = licenses.mit;
14 homepage = "https://github.com/qcam/3llo";
15 maintainers = with maintainers; [ ];
16 };
17}