2019-07-22 14:02:47 +02:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2019-02-19 11:50:35 +01:00
|
|
|
|
|
|
|
bundlerApp {
|
|
|
|
pname = "td";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "td" ];
|
|
|
|
|
2019-07-22 14:02:47 +02:00
|
|
|
passthru.updateScript = bundlerUpdateScript "td";
|
|
|
|
|
2019-02-19 11:50:35 +01:00
|
|
|
meta = with lib; {
|
2020-10-11 07:55:05 +02:00
|
|
|
description = "CLI to manage data on Treasure Data, the Hadoop-based cloud data warehousing";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/treasure-data/td";
|
2019-02-19 11:50:35 +01:00
|
|
|
license = licenses.asl20;
|
2019-07-22 14:02:47 +02:00
|
|
|
maintainers = with maintainers; [ groodt nicknovitski ];
|
2019-02-19 11:50:35 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|