1{
2 lib,
3 bundlerApp,
4 bundlerUpdateScript,
5}:
6
7bundlerApp {
8 pname = "t";
9 gemdir = ./.;
10 exes = [ "t" ];
11
12 passthru.updateScript = bundlerUpdateScript "t";
13
14 meta = with lib; {
15 description = "Command-line power tool for Twitter";
16 homepage = "http://sferik.github.io/t/";
17 license = licenses.asl20;
18 maintainers = with maintainers; [
19 offline
20 manveru
21 nicknovitski
22 ];
23 platforms = platforms.unix;
24 mainProgram = "t";
25 };
26}