2015-03-18 20:58:04 +01:00
|
|
|
{ stdenv, lib, bundlerEnv, ruby }:
|
|
|
|
|
|
|
|
bundlerEnv {
|
|
|
|
name = "t-2.9.0";
|
|
|
|
|
|
|
|
inherit ruby;
|
|
|
|
gemfile = ./Gemfile;
|
|
|
|
lockfile = ./Gemfile.lock;
|
|
|
|
gemset = ./gemset.nix;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2015-04-28 10:54:58 +02:00
|
|
|
description = "A command-line power tool for Twitter";
|
2015-03-18 20:58:04 +01:00
|
|
|
homepage = http://sferik.github.io/t/;
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.asl20;
|
2015-03-18 20:58:04 +01:00
|
|
|
maintainers = with maintainers; [ offline ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|