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

bundlerApp {
  pname = "3llo";

  gemdir  = ./.;

  exes = [ "3llo" ];

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