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