summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/tflint
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-12-07 16:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-12-07 16:20:00 -0500
commit929a088a945d8b6b7de831df2c2e309f06e400d2 (patch)
treea51197798f433353560cda0c3155a009f0f93738 /pkgs/development/tools/analysis/tflint
parent86b6ee9825ea5b5ce08d8696d6c4214c7df3a8e1 (diff)
downloadnixpkgs-929a088a945d8b6b7de831df2c2e309f06e400d2.tar
nixpkgs-929a088a945d8b6b7de831df2c2e309f06e400d2.tar.gz
nixpkgs-929a088a945d8b6b7de831df2c2e309f06e400d2.tar.bz2
nixpkgs-929a088a945d8b6b7de831df2c2e309f06e400d2.tar.lz
nixpkgs-929a088a945d8b6b7de831df2c2e309f06e400d2.tar.xz
nixpkgs-929a088a945d8b6b7de831df2c2e309f06e400d2.tar.zst
nixpkgs-929a088a945d8b6b7de831df2c2e309f06e400d2.zip
tflint: 0.13.1 -> 0.13.2
Changelog: https://github.com/terraform-linters/tflint/releases/tag/v0.13.2
Diffstat (limited to 'pkgs/development/tools/analysis/tflint')
-rw-r--r--pkgs/development/tools/analysis/tflint/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/tools/analysis/tflint/default.nix b/pkgs/development/tools/analysis/tflint/default.nix
index 65a5539028c..111c41ea95b 100644
--- a/pkgs/development/tools/analysis/tflint/default.nix
+++ b/pkgs/development/tools/analysis/tflint/default.nix
@@ -2,22 +2,23 @@
 
 buildGoModule rec {
   pname = "tflint";
-  version = "0.13.1";
+  version = "0.13.2";
 
   src = fetchFromGitHub {
     owner = "terraform-linters";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0ivvx1nbhzijyiv9q05b5953wxga5wdskamnhfvlwpniabic3gxi";
+    sha256 = "16iv2z4krx8ixifpq0r784xspknmj0bbvhx10mnq97v49j5c03qi";
   };
 
-  modSha256 = "0q1sc0bj4a29rzly4fk6m40b8i7syxa7ff9882jwi7gxjdiklch3";
+  modSha256 = "1rk22w4b5iq6fp3jwpcpnb6y2frbrggxkhdm3ipp8c5savq2wbqh";
 
   subPackages = [ "." ];
 
   meta = with lib; {
     description = "Terraform linter focused on possible errors, best practices, and so on";
     homepage = "https://github.com/terraform-linters/tflint";
+    changelog = "https://github.com/terraform-linters/tflint/releases/tag/v${version}";
     license = licenses.mpl20;
     maintainers = [ maintainers.marsam ];
   };