summary refs log tree commit diff
path: root/pkgs/tools/misc/t/default.nix
blob: ad9e0949ce87f67510434c4e35af8c2a5468d1ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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     = licenses.asl20;
    maintainers = with maintainers; [ offline ];
    platforms   = platforms.unix;
  };
}