about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-08-06 12:48:58 -0500
committerWael Nasreddine <wael.nasreddine@gmail.com>2019-08-06 10:48:57 -0700
commit4e6253392cef3007057d264d8e999e2fcd0aa72e (patch)
tree40293259bf81e80a8ec580f0c8c6f68bc03d7eca /pkgs/development/tools
parent03dcf02ac3279a9e46b34e232b02ccd807909c84 (diff)
downloadnixlib-4e6253392cef3007057d264d8e999e2fcd0aa72e.tar
nixlib-4e6253392cef3007057d264d8e999e2fcd0aa72e.tar.gz
nixlib-4e6253392cef3007057d264d8e999e2fcd0aa72e.tar.bz2
nixlib-4e6253392cef3007057d264d8e999e2fcd0aa72e.tar.lz
nixlib-4e6253392cef3007057d264d8e999e2fcd0aa72e.tar.xz
nixlib-4e6253392cef3007057d264d8e999e2fcd0aa72e.tar.zst
nixlib-4e6253392cef3007057d264d8e999e2fcd0aa72e.zip
terracognita: init at 0.1.6 (#66203)
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/terracognita/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/terracognita/default.nix b/pkgs/development/tools/misc/terracognita/default.nix
new file mode 100644
index 000000000000..832a2285569d
--- /dev/null
+++ b/pkgs/development/tools/misc/terracognita/default.nix
@@ -0,0 +1,22 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "terracognita";
+  version = "0.1.6";
+
+  src = fetchFromGitHub {
+    owner = "cycloidio";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "0ljh9dyn919k5f0yaca5an2vczj8cd5cb6qb4i5bdgmlh3wijiag";
+  };
+
+  modSha256 = "1ssz6rhdqma79x75qsxpa9is5zw1nlc0rv1h23dfsk8vla3p84ml";
+
+  meta = with lib; {
+    description = "Reads from existing Cloud Providers (reverse Terraform) and generates your infrastructure as code on Terraform configuration";
+    homepage = "https://github.com/cycloidio/terracognita";
+    license = licenses.mit;
+    maintainers = [ maintainers.marsam ];
+  };
+}