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

bundlerApp {
  pname = "t";
  gemdir = ./.;
  exes = [ "t" ];

  passthru.updateScript = bundlerUpdateScript "t";

  meta = with lib; {
    description = "A command-line power tool for Twitter";
    homepage    = "http://sferik.github.io/t/";
    license     = licenses.asl20;
    maintainers = with maintainers; [ offline manveru nicknovitski ];
    platforms   = platforms.unix;
    mainProgram = "t";
  };
}