My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/nixpkgs/stable/pkgs/applications/networking/cluster/terraforming/default.nix

20 lines
513 B

{ 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 ];
};
}