26 lines
693 B
Nix
26 lines
693 B
Nix
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "terraformer";
|
||
|
version = "0.8.24";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "GoogleCloudPlatform";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "sha256-paBj2vaBicXHMEei2HPW+d4fXWf8VnVhvcanXmo/5KI=";
|
||
|
};
|
||
|
|
||
|
vendorHash = "sha256-Rh2ZGSfa95Yw8GGjsZjwmj0o4qKpygbPsLCbzUTOBxQ=";
|
||
|
|
||
|
subPackages = [ "." ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastructure to Code";
|
||
|
mainProgram = "terraformer";
|
||
|
homepage = "https://github.com/GoogleCloudPlatform/terraformer";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = [ ];
|
||
|
};
|
||
|
}
|