Merge pull request #238383 from dit7ya/terramate

terramate: init at 0.3.0
This commit is contained in:
Nick Cao 2023-07-23 20:12:51 -06:00 committed by GitHub
commit 03f5806fda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, buildGoModule
, fetchFromGitHub
, git
}:
buildGoModule rec {
pname = "terramate";
version = "0.3.0";
src = fetchFromGitHub {
owner = "terramate-io";
repo = "terramate";
rev = "v${version}";
hash = "sha256-/e3NbUhHQlREjb3YYSfrPq/GE+BfFI3mUO4eRE4mk9U=";
};
vendorHash = "sha256-bja4v48BSPZC/vJVps2LKq90fReYpMY/yKTThsQQCHE=";
# required for version info
nativeBuildInputs = [ git ];
ldflags = [ "-extldflags" "-static" ];
meta = with lib; {
description = "Adds code generation, stacks, orchestration, change detection, data sharing and more to Terraform";
homepage = "https://github.com/terramate-io/terramate";
license = licenses.mpl20;
maintainers = with maintainers; [ dit7ya ];
};
}

View file

@ -19981,6 +19981,8 @@ with pkgs;
terraformer = callPackage ../development/tools/misc/terraformer { };
terramate = callPackage ../development/tools/misc/terramate { };
terrascan = callPackage ../tools/security/terrascan { };
texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { };