about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/t/default.nix
blob: aa34b98bbe292cd0a4b14b651a58727cb2399e25 (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;
  };
}