about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/t/default.nix
blob: dd0eda67ce55acf1d16bc78572626f4ae6a25dc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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;
  };
}