summary refs log tree commit diff
path: root/pkgs/tools/misc/3llo/default.nix
blob: 1f59d1f16a7850133a3978158df586f7d5d12cb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib, ruby, bundlerApp, fetchpatch }:

bundlerApp {
  pname = "3llo";

  gemfile = ./Gemfile;
  lockfile = ./Gemfile.lock;

  gemset = lib.recursiveUpdate (import ./gemset.nix) ({
    "3llo" = {
      dontBuild = false;
      patches = [
        (fetchpatch {
          url = https://github.com/qcam/3llo/commit/7667c67fdc975bac315da027a3c69f49e7c06a2e.patch;
          sha256 = "0ahp19igj77x23b2j9zk3znlmm7q7nija7mjgsmgqkgfbz2r1y7v";
        })
      ];
    };
  });

  inherit ruby;

  exes = [ "3llo" ];

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