1{ stdenv, lib, bundlerEnv, ruby }:
2
3bundlerEnv {
4 name = "t-2.9.0";
5
6 inherit ruby;
7 gemfile = ./Gemfile;
8 lockfile = ./Gemfile.lock;
9 gemset = ./gemset.nix;
10
11 meta = with lib; {
12 description = "A command-line power tool for Twitter";
13 homepage = http://sferik.github.io/t/;
14 license = licenses.asl20;
15 maintainers = with maintainers; [ offline ];
16 platforms = platforms.unix;
17 };
18}