nixpkgs/pkgs/tools/misc/t/default.nix

18 lines
429 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2015-03-18 19:58:04 +00:00
2019-04-30 16:52:13 +00:00
bundlerApp {
pname = "t";
gemdir = ./.;
exes = [ "t" ];
2015-03-18 19:58:04 +00:00
passthru.updateScript = bundlerUpdateScript "t";
2015-03-18 19:58:04 +00:00
meta = with lib; {
2015-04-28 08:54:58 +00:00
description = "A command-line power tool for Twitter";
2015-03-18 19:58:04 +00:00
homepage = http://sferik.github.io/t/;
license = licenses.asl20;
maintainers = with maintainers; [ offline manveru nicknovitski ];
2015-03-18 19:58:04 +00:00
platforms = platforms.unix;
};
}