about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/td/default.nix
blob: 121eff450b5957094c515d4062380385f6cb1725 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, bundlerApp }:

bundlerApp {
  pname = "td";
  gemdir = ./.;
  exes = [ "td" ];

  meta = with lib; {
    description = "CLI to manage data on Treasure Data, the Hadoop-based cloud data warehousing.";
    homepage    = https://github.com/treasure-data/td;
    license     = licenses.asl20;
    maintainers =  with maintainers; [ groodt ];
    platforms   = platforms.unix;
  };
}