bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
18 lines
452 B
Nix
18 lines
452 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "t";
|
|
gemdir = ./.;
|
|
exes = [ "t" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "t";
|
|
|
|
meta = with lib; {
|
|
description = "Command-line power tool for Twitter";
|
|
homepage = "http://sferik.github.io/t/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ offline manveru nicknovitski ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "t";
|
|
};
|
|
}
|