depot/third_party/nixpkgs/pkgs/tools/misc/td/default.nix
Default email d6cfb865ad Project import generated by Copybara.
GitOrigin-RevId: 5265d49a36bb5a18c85e6817b338b456acc3b8cc
2020-10-18 20:13:06 -04:00

17 lines
474 B
Nix

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "td";
gemdir = ./.;
exes = [ "td" ];
passthru.updateScript = bundlerUpdateScript "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 nicknovitski ];
platforms = platforms.unix;
};
}