273010f6a2
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
21 lines
513 B
Nix
21 lines
513 B
Nix
{ 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 ];
|
|
};
|
|
}
|