1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/misc/t/default.nix

19 lines
414 B
Nix
Raw Normal View History

2015-03-18 19:58:04 +00:00
{ stdenv, lib, bundlerEnv, ruby }:
bundlerEnv {
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/;
license = licenses.asl20;
2015-03-18 19:58:04 +00:00
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
};
}