about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/3llo/default.nix
blob: 3053af18cde4e70916218c751a6d2fc1b0d276c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, ruby_3_0, bundlerApp, fetchpatch }:

bundlerApp {
  pname = "3llo";
  ruby = ruby_3_0;

  gemdir  = ./.;

  exes = [ "3llo" ];

  meta = with lib; {
    description = "Trello interactive CLI on terminal";
    license = licenses.mit;
    homepage = "https://github.com/qcam/3llo";
    maintainers = with maintainers; [ ];
  };
}