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

16 lines
343 B
Nix
Raw Normal View History

2019-04-30 17:52:13 +01:00
{ lib, bundlerApp }:
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
meta = with lib; {
2015-04-28 09:54:58 +01: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;
2019-04-30 17:52:13 +01:00
maintainers = with maintainers; [ offline manveru ];
2015-03-18 19:58:04 +00:00
platforms = platforms.unix;
};
}