2020-04-24 23:36:52 +00:00
|
|
|
{ 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;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "t";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|