anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / tools / misc / t / default.nix
blob0bcedf344ba692f3f61023bd5b42959dedca5450
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "t";
5   gemdir = ./.;
6   exes = [ "t" ];
8   passthru.updateScript = bundlerUpdateScript "t";
10   meta = with lib; {
11     description = "Command-line power tool for Twitter";
12     homepage    = "http://sferik.github.io/t/";
13     license     = licenses.asl20;
14     maintainers = with maintainers; [ offline manveru nicknovitski ];
15     platforms   = platforms.unix;
16     mainProgram = "t";
17   };