nixpkgs/pkgs/by-name/te/terraformer/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
700 B
Nix
Raw Normal View History

2020-08-24 04:20:00 +00:00
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "terraformer";
2023-07-15 12:10:26 +00:00
version = "0.8.24";
2020-08-24 04:20:00 +00:00
src = fetchFromGitHub {
owner = "GoogleCloudPlatform";
repo = pname;
rev = version;
2023-07-15 12:10:26 +00:00
sha256 = "sha256-paBj2vaBicXHMEei2HPW+d4fXWf8VnVhvcanXmo/5KI=";
2020-08-24 04:20:00 +00:00
};
2023-07-15 12:10:26 +00:00
vendorHash = "sha256-Rh2ZGSfa95Yw8GGjsZjwmj0o4qKpygbPsLCbzUTOBxQ=";
2020-08-24 04:20:00 +00:00
subPackages = [ "." ];
meta = with lib; {
description = "CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastructure to Code";
mainProgram = "terraformer";
2020-08-24 04:20:00 +00:00
homepage = "https://github.com/GoogleCloudPlatform/terraformer";
license = licenses.asl20;
2024-04-24 04:20:00 +00:00
maintainers = [ ];
2020-08-24 04:20:00 +00:00
};
}