at 24.11-pre 18 lines 454 B view raw
1{ lib, bundlerApp, bundlerUpdateScript }: 2 3bundlerApp { 4 pname = "t"; 5 gemdir = ./.; 6 exes = [ "t" ]; 7 8 passthru.updateScript = bundlerUpdateScript "t"; 9 10 meta = with lib; { 11 description = "A 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 }; 18}