2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2015-03-18 19:58:04 +00:00
|
|
|
|
2019-04-30 17:52:13 +01:00
|
|
|
bundlerApp {
|
|
|
|
pname = "t";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "t" ];
|
2015-03-18 19:58:04 +00:00
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "t";
|
|
|
|
|
2015-03-18 19:58:04 +00:00
|
|
|
meta = with lib; {
|
2015-04-28 09:54:58 +01:00
|
|
|
description = "A command-line power tool for Twitter";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://sferik.github.io/t/";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.asl20;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ offline manveru nicknovitski ];
|
2015-03-18 19:58:04 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|