Merge pull request #119142 from mausch/tf2pulumi
tf2pulumi: init at 0.10.0
This commit is contained in:
commit
0c27bb45a0
|
@ -0,0 +1,28 @@
|
||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "tf2pulumi";
|
||||||
|
version = "0.10.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "pulumi";
|
||||||
|
repo = "tf2pulumi";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "199c4hd236mfz9c44rpzpbr3w3fjj8pbw656jd9k3v2igzw942c7";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "1cwyag67q0361szfjv1cyi51cg1bbmkpy34y33hn53aa55pkm1fw";
|
||||||
|
|
||||||
|
buildFlagsArray = ''
|
||||||
|
-ldflags=-s -w -X=github.com/pulumi/tf2pulumi/version.Version=${src.rev}
|
||||||
|
'';
|
||||||
|
|
||||||
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Convert Terraform projects to Pulumi TypeScript programs";
|
||||||
|
homepage = "https://www.pulumi.com/tf2pulumi/";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ mausch ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -8667,6 +8667,8 @@ in
|
||||||
|
|
||||||
tex-match = callPackage ../tools/typesetting/tex/tex-match { };
|
tex-match = callPackage ../tools/typesetting/tex/tex-match { };
|
||||||
|
|
||||||
|
tf2pulumi = callPackage ../development/tools/tf2pulumi { };
|
||||||
|
|
||||||
thc-hydra = callPackage ../tools/security/thc-hydra { };
|
thc-hydra = callPackage ../tools/security/thc-hydra { };
|
||||||
|
|
||||||
thc-ipv6 = callPackage ../tools/security/thc-ipv6 { };
|
thc-ipv6 = callPackage ../tools/security/thc-ipv6 { };
|
||||||
|
|
Loading…
Reference in New Issue