2015-03-18 19:58:04 +00:00
|
|
|
{ stdenv, lib, bundlerEnv, ruby }:
|
|
|
|
|
|
|
|
bundlerEnv {
|
2018-03-22 21:04:22 +00:00
|
|
|
name = "t-3.1.0";
|
2015-03-18 19:58:04 +00:00
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
gemfile = ./Gemfile;
|
|
|
|
lockfile = ./Gemfile.lock;
|
|
|
|
gemset = ./gemset.nix;
|
|
|
|
|
|
|
|
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/;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.asl20;
|
2015-03-18 19:58:04 +00:00
|
|
|
maintainers = with maintainers; [ offline ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|