b41113241d
GitOrigin-RevId: ae1dc133ea5f1538d035af41e5ddbc2ebcb67b90
32 lines
1 KiB
Nix
32 lines
1 KiB
Nix
{ buildGoModule, fetchFromGitHub, lib, cf-terraforming, testers }:
|
|
|
|
buildGoModule rec {
|
|
pname = "cf-terraforming";
|
|
version = "0.8.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cloudflare";
|
|
repo = "cf-terraforming";
|
|
rev = "v${version}";
|
|
sha256 = "1h0apmcddz1c32rlnjs81fjwpxpkz9n2zalwmk05frrgd8zdbixs";
|
|
};
|
|
|
|
vendorSha256 = "sha256-a/gUxW4/Kv1BuhXpwibb6u7gO8lBo250ark1kwMLToo=";
|
|
ldflags = [ "-X github.com/cloudflare/cf-terraforming/internal/app/cf-terraforming/cmd.versionString=${version}" ];
|
|
|
|
# The test suite insists on downloading a binary release of Terraform from
|
|
# Hashicorp at runtime, which isn't going to work in a nix build
|
|
doCheck = false;
|
|
|
|
passthru.tests = testers.testVersion {
|
|
package = cf-terraforming;
|
|
command = "cf-terraforming version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A command line utility to facilitate terraforming your existing Cloudflare resources";
|
|
homepage = "https://github.com/cloudflare/cf-terraforming/";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ benley ];
|
|
};
|
|
}
|