biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / misc / terraformer / default.nix
blobdc8ad0644fcb48b3eeef242a55a0cc6ce93fd423
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "terraformer";
5   version = "0.8.24";
7   src = fetchFromGitHub {
8     owner = "GoogleCloudPlatform";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-paBj2vaBicXHMEei2HPW+d4fXWf8VnVhvcanXmo/5KI=";
12   };
14   vendorHash = "sha256-Rh2ZGSfa95Yw8GGjsZjwmj0o4qKpygbPsLCbzUTOBxQ=";
16   subPackages = [ "." ];
18   meta = with lib; {
19     description = "CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastructure to Code";
20     mainProgram = "terraformer";
21     homepage = "https://github.com/GoogleCloudPlatform/terraformer";
22     license = licenses.asl20;
23     maintainers = [ maintainers.marsam ];
24   };