nixpkgs/pkgs/development/tools/misc/terraformer/default.nix

25 lines
681 B
Nix
Raw Normal View History

2020-08-24 05:20:00 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "terraformer";
2021-02-23 11:02:42 +00:00
version = "0.8.11";
2020-08-24 05:20:00 +01:00
src = fetchFromGitHub {
owner = "GoogleCloudPlatform";
repo = pname;
rev = version;
2021-02-23 11:02:42 +00:00
sha256 = "sha256-y6cgBYiqy+M8dfcNS6iDohqyip6xAs222MJHJFhloiI=";
2020-08-24 05:20:00 +01:00
};
2021-02-23 11:02:42 +00:00
vendorSha256 = "sha256-PQj3+qcmN/raDrAbufAcVT+vSumGuOY47i7ZYfvx3yk=";
2020-08-24 05:20:00 +01:00
subPackages = [ "." ];
meta = with lib; {
description = "CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastructure to Code";
homepage = "https://github.com/GoogleCloudPlatform/terraformer";
license = licenses.asl20;
maintainers = [ maintainers.marsam ];
};
}