about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/cluster/terraforming/default.nix
blob: 85d522257cde398311c72df7e6cd92f2a0b6e372 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, bundlerApp, bundlerUpdateScript, ruby }:

bundlerApp rec {
  inherit ruby;

  pname = "terraforming";
  gemdir = ./.;
  exes = [ "terraforming" ];

  passthru.updateScript = bundlerUpdateScript "terraforming";

  meta = with lib; {
    inherit (ruby.meta) platforms;

    description = "Export existing AWS resources to Terraform style (tf, tfstate)";
    homepage    = "https://github.com/dtan4/terraforming";
    license     = with licenses; mit;
    maintainers = with maintainers; [ kalbasit ];
  };
}