mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
terramate: init at 0.3.0
This commit is contained in:
parent
5eb2425c0e
commit
6cc5c4f04e
31
pkgs/development/tools/misc/terramate/default.nix
Normal file
31
pkgs/development/tools/misc/terramate/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -19497,6 +19497,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user