32 lines
750 B
Nix
32 lines
750 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|