anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / networking / cluster / terraforming / default.nix
blob85d522257cde398311c72df7e6cd92f2a0b6e372
1 { lib, bundlerApp, bundlerUpdateScript, ruby }:
3 bundlerApp rec {
4   inherit ruby;
6   pname = "terraforming";
7   gemdir = ./.;
8   exes = [ "terraforming" ];
10   passthru.updateScript = bundlerUpdateScript "terraforming";
12   meta = with lib; {
13     inherit (ruby.meta) platforms;
15     description = "Export existing AWS resources to Terraform style (tf, tfstate)";
16     homepage    = "https://github.com/dtan4/terraforming";
17     license     = with licenses; mit;
18     maintainers = with maintainers; [ kalbasit ];
19   };