Add t, command line tool for twitter

This commit is contained in:
Jaka Hudoklin
2015-03-18 21:00:04 +01:00
parent decf15fd57
commit 414dbacfa7
5 changed files with 260 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{ stdenv, lib, bundlerEnv, ruby }:
bundlerEnv {
name = "t-2.9.0";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
meta = with lib; {
description = "A command-line power tool for Twitter.";
homepage = http://sferik.github.io/t/;
license = with licenses; asl20;
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
};
}