nixpkgs/pkgs/development/tools/misc/terracognita/default.nix

30 lines
881 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-08-06 17:48:58 +00:00
buildGoModule rec {
pname = "terracognita";
2021-09-16 00:09:07 +00:00
version = "0.7.3";
2019-08-06 17:48:58 +00:00
src = fetchFromGitHub {
owner = "cycloidio";
repo = pname;
rev = "v${version}";
2021-09-16 00:09:07 +00:00
sha256 = "sha256-V+/RjvCPq27SBMk5EZhLCc98XnHgSqJVoFqob0nZVjo=";
2019-08-06 17:48:58 +00:00
};
2021-08-22 19:43:30 +00:00
vendorSha256 = "sha256-i6AkLAXGOXe3jmAKKQN6aX/DvovSS9CYFYO28bYIdUw=";
doCheck = false;
subPackages = [ "." ];
2021-08-26 06:45:51 +00:00
ldflags = [ "-s" "-w" "-X github.com/cycloidio/terracognita/cmd.Version=${version}" ];
2019-08-06 17:48:58 +00:00
meta = with lib; {
2019-08-06 17:48:58 +00:00
description = "Reads from existing Cloud Providers (reverse Terraform) and generates your infrastructure as code on Terraform configuration";
homepage = "https://github.com/cycloidio/terracognita";
2021-07-19 00:00:00 +00:00
changelog = "https://github.com/cycloidio/terracognita/raw/v${version}/CHANGELOG.md";
2019-08-06 17:48:58 +00:00
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}