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

bundlerApp {
  pname = "t";
  gemdir = ./.;
  exes = [ "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 ];
    platforms   = platforms.unix;
  };
}