chezmoi: 2.57.0 -> 2.58.0 (#375625)
[NixPkgs.git] / pkgs / applications / networking / cluster / terraforming / default.nix
blob68fa21239f5371c751ca143dbf2f4bd9ee6daa69
2   lib,
3   bundlerApp,
4   bundlerUpdateScript,
5   ruby,
6 }:
8 bundlerApp rec {
9   inherit ruby;
11   pname = "terraforming";
12   gemdir = ./.;
13   exes = [ "terraforming" ];
15   passthru.updateScript = bundlerUpdateScript "terraforming";
17   meta = with lib; {
18     inherit (ruby.meta) platforms;
20     description = "Export existing AWS resources to Terraform style (tf, tfstate)";
21     homepage = "https://github.com/dtan4/terraforming";
22     license = with licenses; mit;
23     maintainers = with maintainers; [ kalbasit ];
24   };