about summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/dotenv-linter/default.nix
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-12-27 05:10:40 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-12-27 05:10:40 +0000
commitc87222c7ea73ba0de302e7c619b03ca071b04c67 (patch)
treee197e3e9fcebf79061571700a584e6b22c991238 /pkgs/development/tools/analysis/dotenv-linter/default.nix
parentc2e1d345cbfed2e3e7539f95e67ab6a634bf07b5 (diff)
dotenv-linter: 3.2.0 -> 3.3.0
Diffstat (limited to 'pkgs/development/tools/analysis/dotenv-linter/default.nix')
-rw-r--r--pkgs/development/tools/analysis/dotenv-linter/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/analysis/dotenv-linter/default.nix b/pkgs/development/tools/analysis/dotenv-linter/default.nix
index fdd4d84673b55..fec39c962a668 100644
--- a/pkgs/development/tools/analysis/dotenv-linter/default.nix
+++ b/pkgs/development/tools/analysis/dotenv-linter/default.nix
@@ -7,16 +7,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "dotenv-linter";
-  version = "3.2.0";
+  version = "3.3.0";
 
   src = fetchFromGitHub {
     owner = "dotenv-linter";
     repo = "dotenv-linter";
     rev = "v${version}";
-    sha256 = "sha256-YWL1aPcMdU4lo7h/T2sdl2H6qnx3lfMtV39Ak4yP88w=";
+    sha256 = "sha256-HCP1OUWm/17e73TbinmDxYUi18/KXxppstyUSixjlSo=";
   };
 
-  cargoSha256 = "sha256-q59hpnXc00OzrJk1KOWbIPQYfIE+7ku9XtTDXHgwQBg=";
+  cargoSha256 = "sha256-4r4NTq2rLnpmm/nwxJ9RoN2+JrUI6XKGfYFI78NY710=";
 
   buildInputs = lib.optional stdenv.isDarwin Security;