biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / td / default.nix
blobebfe642a27d277090cb66025ff0b924c0ac956ac
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "td";
5   gemdir = ./.;
6   exes = [ "td" ];
8   passthru.updateScript = bundlerUpdateScript "td";
10   meta = with lib; {
11     description = "CLI to manage data on Treasure Data, the Hadoop-based cloud data warehousing";
12     homepage    = "https://github.com/treasure-data/td";
13     license     = licenses.asl20;
14     maintainers =  with maintainers; [ groodt nicknovitski ];
15     platforms   = platforms.unix;
16     mainProgram = "td";
17   };